translate: handle more noreturn cases
[ia32rtools.git] / tests / reg_call_tail2.asm
diff --git a/tests/reg_call_tail2.asm b/tests/reg_call_tail2.asm
new file mode 100644 (file)
index 0000000..6562e23
--- /dev/null
@@ -0,0 +1,17 @@
+
+_text           segment para public 'CODE' use32
+
+sub_test        proc near
+
+arg_0           = dword ptr  4
+
+                inc     [esp+arg_0]
+                jz      return_
+                jmp     another_func
+return_:
+                retn    4
+sub_test        endp
+
+_text           ends
+
+; vim:expandtab