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