2020-04-13 17:21:19 -05:00
|
|
|
// compile-flags: -C no-prepopulate-passes
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(ffi_pure)]
|
|
|
|
|
|
|
|
pub fn bar() { unsafe { foo() } }
|
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2021-03-27 17:11:24 -05:00
|
|
|
// CHECK-LABEL: declare{{.*}}void @foo()
|
2020-04-13 17:21:19 -05:00
|
|
|
// CHECK-SAME: [[ATTRS:#[0-9]+]]
|
|
|
|
// CHECK-DAG: attributes [[ATTRS]] = { {{.*}}readonly{{.*}} }
|
|
|
|
#[ffi_pure] pub fn foo();
|
|
|
|
}
|