aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/hexagon/test_bitsplit.S
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/hexagon/test_bitsplit.S')
-rw-r--r--tests/tcg/hexagon/test_bitsplit.S22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/tcg/hexagon/test_bitsplit.S b/tests/tcg/hexagon/test_bitsplit.S
new file mode 100644
index 0000000000..275658e613
--- /dev/null
+++ b/tests/tcg/hexagon/test_bitsplit.S
@@ -0,0 +1,22 @@
+/* Purpose: test example, verify the soundness of the bitsplit operation */
+
+ .text
+ .globl _start
+
+_start:
+ {
+ r1 = #187
+ }
+ {
+ r3:2 = bitsplit(r1, #3)
+ }
+ {
+ p0 = cmp.eq(r2, #3); if (p0.new) jump:t test2
+ jump fail
+ }
+
+test2:
+ {
+ p0 = cmp.eq(r3, #23); if (p0.new) jump:t pass
+ jump fail
+ }