1
Fork 0

Fix conflicts after rebase

- r-l/r 126784
- r-l/r 127113
- r-l/miri 3562
This commit is contained in:
Maybe Lapkin 2024-07-07 18:04:29 +02:00
parent 54e11cf378
commit 7fd0c55a1a
5 changed files with 10 additions and 5 deletions

View file

@ -767,7 +767,7 @@ pub enum TerminatorKind<'tcx> {
/// These are owned by the callee, which is free to modify them.
/// This allows the memory occupied by "by-value" arguments to be
/// reused across function calls without duplicating the contents.
args: Vec<Spanned<Operand<'tcx>>>,
args: Box<[Spanned<Operand<'tcx>>]>,
// FIXME(explicit_tail_calls): should we have the span for `become`? is this span accurate? do we need it?
/// This `Span` is the span of the function, without the dot and receiver
/// (e.g. `foo(a, b)` in `x.foo(a, b)`