Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
31
tests/codegen/layout-size-checks.rs
Normal file
31
tests/codegen/layout-size-checks.rs
Normal file
|
@ -0,0 +1,31 @@
|
|||
// compile-flags: -O
|
||||
// only-x86_64
|
||||
// ignore-debug: the debug assertions get in the way
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
use std::alloc::Layout;
|
||||
|
||||
type RGB48 = [u16; 3];
|
||||
|
||||
// CHECK-LABEL: @layout_array_rgb48
|
||||
#[no_mangle]
|
||||
pub fn layout_array_rgb48(n: usize) -> Layout {
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
// CHECK: icmp ugt i64 %n, 1537228672809129301
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
// CHECK: mul nuw nsw i64 %n, 6
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
Layout::array::<RGB48>(n).unwrap()
|
||||
}
|
||||
|
||||
// CHECK-LABEL: @layout_array_i32
|
||||
#[no_mangle]
|
||||
pub fn layout_array_i32(n: usize) -> Layout {
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
// CHECK: icmp ugt i64 %n, 2305843009213693951
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
// CHECK: shl nuw nsw i64 %n, 2
|
||||
// CHECK-NOT: llvm.umul.with.overflow.i64
|
||||
Layout::array::<i32>(n).unwrap()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue