rust/tests/codegen/cffi/ffi-const.rs

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

17 lines
426 B
Rust
Raw Normal View History

//@ compile-flags: -C no-prepopulate-passes
#![crate_type = "lib"]
#![feature(ffi_const)]
pub fn bar() {
unsafe { foo() }
}
2020-09-01 21:12:52 +00:00
extern "C" {
// CHECK-LABEL: declare{{.*}}void @foo()
// CHECK-SAME: [[ATTRS:#[0-9]+]]
2022-11-04 16:20:42 +00:00
// The attribute changed from `readnone` to `memory(none)` with LLVM 16.0.
// CHECK-DAG: attributes [[ATTRS]] = { {{.*}}{{readnone|memory\(none\)}}{{.*}} }
#[ffi_const]
pub fn foo();
}