summaryrefslogtreecommitdiff
path: root/test-suite/standalone/sassy/tests/prims/with-lose3.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/standalone/sassy/tests/prims/with-lose3.scm')
-rw-r--r--test-suite/standalone/sassy/tests/prims/with-lose3.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/test-suite/standalone/sassy/tests/prims/with-lose3.scm b/test-suite/standalone/sassy/tests/prims/with-lose3.scm
new file mode 100644
index 000000000..9c122676f
--- /dev/null
+++ b/test-suite/standalone/sassy/tests/prims/with-lose3.scm
@@ -0,0 +1,27 @@
+(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)))
+
+; foo:
+; 00000000 C3 ret
+; bar:
+; 00000001 C3 ret
+; qudr:
+; 00000002 C3 ret
+; 00000003 90 nop
+; 00000004 0F85F6FFFFFF jnz near 0x0
+; 0000000A 0F8CF1FFFFFF jl near 0x1
+; 00000010 0F86ECFFFFFF jna near 0x2
+; 00000016 90 nop
+
+
+
+
+ \ No newline at end of file