Skip to content

Commit

Permalink
Rollup merge of #101200 - nikic:issue-85872, r=compiler-errors
Browse files Browse the repository at this point in the history
Add test for issue #85872

This has been fixed by the LLVM 15 upgrade, add a codegen test.

Fixes #85872.
  • Loading branch information
JohnTitor committed Aug 30, 2022
2 parents 804029e + 5663bb3 commit d7ba1f8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/codegen/issue-85872-multiple-reverse.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// min-llvm-version: 15.0.0
// compile-flags: -O

#![crate_type = "lib"]

#[no_mangle]
pub fn u16_be_to_arch(mut data: [u8; 2]) -> [u8; 2] {
// CHECK-LABEL: @u16_be_to_arch
// CHECK: @llvm.bswap.i16
data.reverse();
data
}

#[no_mangle]
pub fn u32_be_to_arch(mut data: [u8; 4]) -> [u8; 4] {
// CHECK-LABEL: @u32_be_to_arch
// CHECK: @llvm.bswap.i32
data.reverse();
data
}

0 comments on commit d7ba1f8

Please sign in to comment.