diff options
Diffstat (limited to 'tests/lm32/test_call.S')
-rw-r--r-- | tests/lm32/test_call.S | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/lm32/test_call.S b/tests/lm32/test_call.S new file mode 100644 index 0000000000..1b91a5f2be --- /dev/null +++ b/tests/lm32/test_call.S @@ -0,0 +1,16 @@ +.include "macros.inc" + +start + +test_name CALL_1 +load r1 mark +call r1 +return: + +tc_fail +end + +mark: +mv r3, ra +check_r3 return +end |