rust/tests/mir-opt/const_prop/overwrite_with_const_with_params.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
657 B
Rust
Raw Normal View History

//@ test-mir-pass: GVN
//@ compile-flags: -O
2023-11-28 16:31:53 -06:00
// Regression test for https://github.com/rust-lang/rust/issues/118328
#![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 16:43:33 -05:00
// EMIT_MIR overwrite_with_const_with_params.size_of.GVN.diff
fn size_of<T>() -> usize {
2023-11-28 16:31:53 -06:00
// CHECK-LABEL: fn size_of(
// CHECK: _1 = const 0_usize;
// CHECK-NEXT: _1 = const SizeOfConst::<T>::SIZE;
2024-08-18 17:51:53 -05:00
// CHECK-NEXT: _0 = copy _1;
let mut a = 0;
a = SizeOfConst::<T>::SIZE;
a
}
fn main() {
assert_eq!(size_of::<u32>(), std::mem::size_of::<u32>());
}