rust/tests/codegen/noalias-freeze.rs

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

24 lines
537 B
Rust
Raw Permalink Normal View History

2024-05-17 14:05:36 -05:00
//@ compile-flags: -Copt-level=1
// References returned by a Frozen pointer type
// could be marked as "noalias", which caused miscompilation errors.
// This test runs the most minimal possible code that can reproduce this bug,
// and checks that noalias does not appear.
// See https://github.com/rust-lang/rust/issues/46239
#![crate_type = "lib"]
fn project<T>(x: &(T,)) -> &T {
&x.0
}
2024-05-17 14:05:36 -05:00
fn dummy() {}
// CHECK-LABEL: @foo(
// CHECK-NOT: noalias
#[no_mangle]
pub fn foo() {
let f = (dummy as fn(),);
(*project(&f))();
}