summaryrefslogtreecommitdiff
path: root/test-suite/standalone/sassy/tests/prims16/16with-lose3.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/standalone/sassy/tests/prims16/16with-lose3.scm')
-rw-r--r--test-suite/standalone/sassy/tests/prims16/16with-lose3.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/test-suite/standalone/sassy/tests/prims16/16with-lose3.scm b/test-suite/standalone/sassy/tests/prims16/16with-lose3.scm
new file mode 100644
index 000000000..27ac9beb9
--- /dev/null
+++ b/test-suite/standalone/sassy/tests/prims16/16with-lose3.scm
@@ -0,0 +1,26 @@
+(bits 16)
+
+(text
+ (label foo (ret))
+ (label bar (ret))
+ (label qudr (ret))
+ (seq
+ (nop)
+ (with-lose foo z!)
+ (with-lose bar ge!)
+ (with-lose qudr a!)
+ (nop)))
+
+; 00000000 C3 ret
+; 00000001 C3 ret
+; 00000002 C3 ret
+; 00000003 90 nop
+; 00000004 0F85F8FF jnz near 0x0
+; 00000008 0F8CF5FF jl near 0x1
+; 0000000C 0F86F2FF jna near 0x2
+; 00000010 90 nop
+
+
+
+
+ \ No newline at end of file