From 844b77e3bc91960b3be11c3b4bf08bdb3aedd756 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 5 Jul 2022 16:09:40 -0700 Subject: [PATCH] remove sparc64 test case which is tripping llvm assertion See #12011 --- test/cases/sparc64-linux/hello_world.zig | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/cases/sparc64-linux/hello_world.zig diff --git a/test/cases/sparc64-linux/hello_world.zig b/test/cases/sparc64-linux/hello_world.zig deleted file mode 100644 index b5a2562c44..0000000000 --- a/test/cases/sparc64-linux/hello_world.zig +++ /dev/null @@ -1,22 +0,0 @@ -const msg = "Hello, World!\n"; - -fn length() usize { - return msg.len; -} - -pub fn main() void { - asm volatile ("ta 0x6d" - : - : [number] "{g1}" (4), - [arg1] "{o0}" (1), - [arg2] "{o1}" (@ptrToInt(msg)), - [arg3] "{o2}" (length()), - : "o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7", "memory" - ); -} - -// run -// target=sparc64-linux -// -// Hello, World! -//