mirror of
https://github.com/ziglang/zig.git
synced 2026-01-19 13:55:20 +00:00
This is just a temporary fix - I would like to unify all of x86_64 tests across linux and macos OSes.
13 lines
200 B
Zig
13 lines
200 B
Zig
fn entry(a: *addrspace(.gs) i32) *addrspace(.gs) i32 {
|
|
return a;
|
|
}
|
|
pub fn main() void {
|
|
_ = entry;
|
|
}
|
|
|
|
// error
|
|
// output_mode=Exe
|
|
// backend=stage2,llvm
|
|
// target=x86_64-linux,x86_64-macos
|
|
//
|