2024-04-20 13:19:34 +02:00
|
|
|
//@ test-mir-pass: GVN
|
2023-11-28 15:12:46 +00:00
|
|
|
//@ compile-flags: -O
|
2023-11-28 22:31:53 +00:00
|
|
|
|
|
|
|
// Regression test for https://github.com/rust-lang/rust/issues/118328
|
|
|
|
|
2023-11-28 15:12:46 +00:00
|
|
|
#![allow(unused_assignments)]
|
|
|
|
|
|
|
|
struct SizeOfConst<T>(std::marker::PhantomData<T>);
|
|
|
|
impl<T> SizeOfConst<T> {
|
|
|
|
const SIZE: usize = std::mem::size_of::<T>();
|
|
|
|
}
|
|
|
|
|
2023-09-20 21:43:33 +00:00
|
|
|
// EMIT_MIR overwrite_with_const_with_params.size_of.GVN.diff
|
2023-11-28 15:12:46 +00:00
|
|
|
fn size_of<T>() -> usize {
|
2023-11-28 22:31:53 +00:00
|
|
|
// CHECK-LABEL: fn size_of(
|
|
|
|
// CHECK: _1 = const 0_usize;
|
2024-03-10 14:05:11 +01:00
|
|
|
// CHECK-NEXT: _1 = const SizeOfConst::<T>::SIZE;
|
2024-08-18 15:51:53 -07:00
|
|
|
// CHECK-NEXT: _0 = copy _1;
|
2023-11-28 15:12:46 +00:00
|
|
|
let mut a = 0;
|
|
|
|
a = SizeOfConst::<T>::SIZE;
|
|
|
|
a
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(size_of::<u32>(), std::mem::size_of::<u32>());
|
|
|
|
}
|