diff options
author | Niccolò Izzo <nizzo@rev.ng> | 2022-09-23 19:38:31 +0200 |
---|---|---|
committer | Taylor Simpson <tsimpson@quicinc.com> | 2022-12-16 12:30:28 -0800 |
commit | 585a86b1041a45c3b4074440c7f1b54944570867 (patch) | |
tree | 03f9d2c29c782da50ac2324c3298a2a1a4576826 /tests/tcg/hexagon/crt.S | |
parent | e71fdc4f1bd5632f2d152a08cbecd82b5aa9e954 (diff) |
target/hexagon: import additional tests
Signed-off-by: Alessandro Di Federico <ale@rev.ng>
Signed-off-by: Niccolò Izzo <nizzo@rev.ng>
Signed-off-by: Anton Johansson <anjo@rev.ng>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20220923173831.227551-12-anjo@rev.ng>
Diffstat (limited to 'tests/tcg/hexagon/crt.S')
-rw-r--r-- | tests/tcg/hexagon/crt.S | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/tcg/hexagon/crt.S b/tests/tcg/hexagon/crt.S new file mode 100644 index 0000000000..f9e6bc80f7 --- /dev/null +++ b/tests/tcg/hexagon/crt.S @@ -0,0 +1,14 @@ +#define SYS_exit_group 94 + + .text + .globl pass +pass: + r0 = #0 + r6 = #SYS_exit_group + trap0(#1) + + .globl fail +fail: + r0 = #1 + r6 = #SYS_exit_group + trap0(#1) |