2025-02-24 09:26:54 +00:00
|
|
|
//@ add-core-stubs
|
2021-09-10 15:11:56 +02:00
|
|
|
//@ revisions: x64
|
|
|
|
//@ assembly-output: emit-asm
|
|
|
|
//@ [x64] compile-flags: --target x86_64-unknown-linux-gnu -Crelocation-model=pic
|
|
|
|
//@ [x64] needs-llvm-components: x86
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![no_core]
|
2024-05-29 13:57:23 +10:00
|
|
|
#![crate_type = "rlib"]
|
2021-09-10 15:11:56 +02:00
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
extern crate minicore;
|
|
|
|
use minicore::*;
|
2021-09-10 15:11:56 +02:00
|
|
|
|
|
|
|
// CHECK-LABEL: call_other_fn:
|
|
|
|
// CHECK: {{(jmpq|callq)}} *other_fn@GOTPCREL(%rip)
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn call_other_fn() -> u8 {
|
2024-05-29 13:57:23 +10:00
|
|
|
unsafe { other_fn() }
|
2021-09-10 15:11:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: other_fn:
|
|
|
|
// CHECK: callq *foreign_fn@GOTPCREL(%rip)
|
|
|
|
#[no_mangle]
|
|
|
|
#[inline(never)]
|
|
|
|
pub fn other_fn() -> u8 {
|
2024-05-29 13:57:23 +10:00
|
|
|
unsafe { foreign_fn() }
|
2021-09-10 15:11:56 +02:00
|
|
|
}
|
|
|
|
|
2024-05-29 13:57:23 +10:00
|
|
|
extern "C" {
|
|
|
|
fn foreign_fn() -> u8;
|
|
|
|
}
|