zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 844b77e3bc91960b3be11c3b4bf08bdb3aedd756 (tree)
parent 93ac87c1bdc40e6cc11bcad1948d767af3725018
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Tue,  5 Jul 2022 16:09:40 -0700

remove sparc64 test case which is tripping llvm assertion

See #12011

Diffstat:
Dtest/cases/sparc64-linux/hello_world.zig | 22----------------------
1 file changed, 0 insertions(+), 22 deletions(-)

diff --git a/test/cases/sparc64-linux/hello_world.zig b/test/cases/sparc64-linux/hello_world.zig @@ -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! -//