X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Freg_call_tail2.asm;fp=tests%2Freg_call_tail2.asm;h=6562e23821908a3e8df7d0551e0827edba73a3b8;hb=56b4935896ac3b34a515016027c495c4987fce11;hp=0000000000000000000000000000000000000000;hpb=e27467d0d2681cc379c37c3fb7ad22ab9766fb2d;p=ia32rtools.git diff --git a/tests/reg_call_tail2.asm b/tests/reg_call_tail2.asm new file mode 100644 index 0000000..6562e23 --- /dev/null +++ b/tests/reg_call_tail2.asm @@ -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