blob: 6791fc9523a1fc14a55633677cbfba3bd59dd017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
fn entry(a: *addrspace(.gs) i32) *addrspace(.gs) i32 {
return a;
}
pub fn main() void {
_ = &entry;
}
// compile
// output_mode=Exe
// backend=selfhosted,llvm
// target=x86_64-linux,x86_64-macos
//
|