2022-12-30 20:11:30 +00:00
|
|
|
// compile-flags: -C relocation-model=pic -Copt-level=0
|
2021-09-10 13:11:56 +00:00
|
|
|
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
2022-12-30 20:11:30 +00:00
|
|
|
// CHECK: define i8 @call_foreign_fn()
|
2021-09-10 13:11:56 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn call_foreign_fn() -> u8 {
|
|
|
|
unsafe {
|
|
|
|
foreign_fn()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-19 20:15:15 +00:00
|
|
|
// (Allow but do not require `zeroext` here, because it is not worth effort to
|
|
|
|
// spell out which targets have it and which ones do not; see rust#97800.)
|
|
|
|
|
2022-12-30 20:11:30 +00:00
|
|
|
// CHECK: declare{{( zeroext)?}} i8 @foreign_fn()
|
2021-09-10 13:11:56 +00:00
|
|
|
extern "C" {fn foreign_fn() -> u8;}
|
|
|
|
|
2022-08-19 14:37:53 +00:00
|
|
|
// CHECK: !{i32 {{[78]}}, !"PIC Level", i32 2}
|