| author | |
| committer | |
| log | 953e2778d4402cf85b99061ef9bdb89aa3e5f2db |
| tree | 7cc1ba371eab54fb84d5f56a67c3dab0d035bf7a |
| parent | 818fbd9c567b907031c44961e4299ce1f9059be6 |
These should be build-obj, not build-exe, where possible.1 files changed, 2 insertions(+), 2 deletions(-)
test/cases/llvm/pointer_with_different_address_spaces.zig+2-2| ... | @@ -1,12 +1,12 @@ | ... | @@ -1,12 +1,12 @@ |
| 1 | fn entry(a: *addrspace(.gs) i32) *addrspace(.fs) i32 { | 1 | fn entry(a: *addrspace(.gs) i32) *addrspace(.fs) i32 { |
| 2 | return a; | 2 | return a; |
| 3 | } | 3 | } |
| 4 | pub fn main() void { | 4 | export fn entry2() void { |
| 5 | _ = entry; | 5 | _ = entry; |
| 6 | } | 6 | } |
| 7 | 7 | ||
| 8 | // error | 8 | // error |
| 9 | // output_mode=Exe | 9 | // output_mode=Obj |
| 10 | // backend=stage2,llvm | 10 | // backend=stage2,llvm |
| 11 | // target=x86_64-linux,x86_64-macos | 11 | // target=x86_64-linux,x86_64-macos |
| 12 | // | 12 | // |