authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-05 16:09:40-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-07-05 16:22:53-07:00
log844b77e3bc91960b3be11c3b4bf08bdb3aedd756
tree3525fe4fa894a10519ee2cc4e50f4f32cee7d835
parent93ac87c1bdc40e6cc11bcad1948d767af3725018

remove sparc64 test case which is tripping llvm assertion

See #12011

1 files changed, 0 insertions(+), 22 deletions(-)

test/cases/sparc64-linux/hello_world.zig deleted-22
...@@ -1,22 +0,0 @@
1const msg = "Hello, World!\n";
2
3fn length() usize {
4 return msg.len;
5}
6
7pub fn main() void {
8 asm volatile ("ta 0x6d"
9 :
10 : [number] "{g1}" (4),
11 [arg1] "{o0}" (1),
12 [arg2] "{o1}" (@ptrToInt(msg)),
13 [arg3] "{o2}" (length()),
14 : "o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7", "memory"
15 );
16}
17
18// run
19// target=sparc64-linux
20//
21// Hello, World!
22//