2015-08-03 22:38:06 +00:00
|
|
|
// compile-flags: -C no-prepopulate-passes
|
|
|
|
|
2015-09-15 21:22:16 +00:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2018-05-12 16:47:20 +00:00
|
|
|
// CHECK: @VAR1 = constant <{ [4 x i8] }> <{ [4 x i8] c"\01\00\00\00" }>, section ".test_one"
|
2015-08-03 22:38:06 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".test_one"]
|
2018-05-12 16:47:20 +00:00
|
|
|
#[cfg(target_endian = "little")]
|
2015-08-03 22:38:06 +00:00
|
|
|
pub static VAR1: u32 = 1;
|
|
|
|
|
2018-05-12 16:47:20 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".test_one"]
|
|
|
|
#[cfg(target_endian = "big")]
|
|
|
|
pub static VAR1: u32 = 0x01000000;
|
|
|
|
|
2015-08-03 22:38:06 +00:00
|
|
|
pub enum E {
|
|
|
|
A(u32),
|
|
|
|
B(f32)
|
|
|
|
}
|
|
|
|
|
2017-06-18 13:59:51 +00:00
|
|
|
// CHECK: @VAR2 = constant {{.*}}, section ".test_two"
|
2015-08-03 22:38:06 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".test_two"]
|
|
|
|
pub static VAR2: E = E::A(666);
|
|
|
|
|
2017-06-18 13:59:51 +00:00
|
|
|
// CHECK: @VAR3 = constant {{.*}}, section ".test_three"
|
2015-08-03 22:38:06 +00:00
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".test_three"]
|
|
|
|
pub static VAR3: E = E::B(1.);
|
|
|
|
|
|
|
|
// CHECK: define void @fn1() {{.*}} section ".test_four" {
|
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".test_four"]
|
|
|
|
pub fn fn1() {}
|