diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2024-05-10 22:00:57 -0700 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2024-05-11 21:22:51 -0700 |
| commit | dcab06d7d206a1e061233c0e251deb06ef0c1300 (patch) | |
| tree | ca53c3053b5393f1d0002b1e81da085ec664f6c8 /tests/codegen | |
| parent | ee97564e3a9f9ac8c65103abb37c6aa48d95bfa2 (diff) | |
| download | rust-dcab06d7d206a1e061233c0e251deb06ef0c1300.tar.gz rust-dcab06d7d206a1e061233c0e251deb06ef0c1300.zip | |
Unify `Rvalue::Aggregate` paths in cg_ssa
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/mir-aggregate-no-alloca.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/mir-aggregate-no-alloca.rs b/tests/codegen/mir-aggregate-no-alloca.rs index a7752d714fe..c0e7e1a05e3 100644 --- a/tests/codegen/mir-aggregate-no-alloca.rs +++ b/tests/codegen/mir-aggregate-no-alloca.rs @@ -55,7 +55,7 @@ pub fn make_cell_of_bool(b: bool) -> std::cell::Cell<bool> { std::cell::Cell::new(b) } -// CHECK-LABLE: { i8, i16 } @make_cell_of_bool_and_short(i1 noundef zeroext %b, i16 noundef %s) +// CHECK-LABEL: { i8, i16 } @make_cell_of_bool_and_short(i1 noundef zeroext %b, i16 noundef %s) #[no_mangle] pub fn make_cell_of_bool_and_short(b: bool, s: u16) -> std::cell::Cell<(bool, u16)> { // CHECK-NOT: alloca |
