summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/pic-relocation-model.rs
blob: 6e1d5a6c3f2712f22fca6991cd44ca62ea8f8fce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// compile-flags: -C relocation-model=pic

#![crate_type = "rlib"]

// CHECK: define i8 @call_foreign_fn()
#[no_mangle]
pub fn call_foreign_fn() -> u8 {
    unsafe {
        foreign_fn()
    }
}

// CHECK: declare zeroext i8 @foreign_fn()
extern "C" {fn foreign_fn() -> u8;}

// CHECK: !{i32 7, !"PIC Level", i32 2}