Add test for #96797

This was fixed in LLVM which was updated in #98285.

https://reviews.llvm.org/D127751

Fixes #96797
This commit is contained in:
Amanieu d'Antras 2022-06-08 23:58:11 +01:00
parent 3fcf43bb0f
commit 4423341263

View File

@ -0,0 +1,26 @@
// build-pass
// compile-flags: -O
// min-llvm-version: 14.0.5
// needs-asm-support
// only-x86_64
// only-linux
// regression test for #96797
#![feature(asm_sym)]
use std::arch::global_asm;
#[no_mangle]
fn my_func() {}
global_asm!("call_foobar: jmp {}", sym foobar);
fn foobar() {}
fn main() {
extern "Rust" {
fn call_foobar();
}
unsafe { call_foobar() };
}