aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tcg/openrisc/test_jal.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/openrisc/test_jal.c')
-rw-r--r--tests/tcg/openrisc/test_jal.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/tcg/openrisc/test_jal.c b/tests/tcg/openrisc/test_jal.c
new file mode 100644
index 00000000..7e2da401
--- /dev/null
+++ b/tests/tcg/openrisc/test_jal.c
@@ -0,0 +1,26 @@
+#include <stdio.h>
+
+int main(void)
+{
+ int a;
+ int result;
+
+ a = 0;
+ result = 2;
+ __asm
+ ("l.addi %0, %0, 1\n\t"
+ "l.jal jal\n\t"
+ "l.nop\n\t"
+ "l.addi %0, %0, 1\n\t"
+ "l.nop\n\t"
+ "jal:\n\t"
+ "l.addi %0, %0, 1\n\t"
+ : "+r"(a)
+ );
+ if (a != result) {
+ printf("jal error\n");
+ return -1;
+ }
+
+ return 0;
+}