Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
43
tests/codegen/cdylib-external-inline-fns.rs
Normal file
43
tests/codegen/cdylib-external-inline-fns.rs
Normal file
|
@ -0,0 +1,43 @@
|
|||
// compile-flags: -C no-prepopulate-passes
|
||||
|
||||
#![crate_type = "cdylib"]
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @a()
|
||||
#[no_mangle]
|
||||
#[inline]
|
||||
pub extern "C" fn a() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @b()
|
||||
#[export_name = "b"]
|
||||
#[inline]
|
||||
pub extern "C" fn b() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @c()
|
||||
#[no_mangle]
|
||||
#[inline]
|
||||
extern "C" fn c() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @d()
|
||||
#[export_name = "d"]
|
||||
#[inline]
|
||||
extern "C" fn d() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @e()
|
||||
#[no_mangle]
|
||||
#[inline(always)]
|
||||
pub extern "C" fn e() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @f()
|
||||
#[export_name = "f"]
|
||||
#[inline(always)]
|
||||
pub extern "C" fn f() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @g()
|
||||
#[no_mangle]
|
||||
#[inline(always)]
|
||||
extern "C" fn g() {}
|
||||
|
||||
// CHECK: define{{( dso_local)?}} void @h()
|
||||
#[export_name = "h"]
|
||||
#[inline(always)]
|
||||
extern "C" fn h() {}
|
Loading…
Add table
Add a link
Reference in a new issue