nlrx86.S: Another ifdef for win32 symbol underscoring issues.

This commit is contained in:
Paul Sokolovsky 2014-04-20 22:14:58 +03:00
parent b76fd842f0
commit 41809a1ced

View File

@ -61,7 +61,11 @@ nlr_jump:
#endif
mov nlr_top, %edx # load nlr_top
test %edx, %edx # check for nlr_top being NULL
#ifdef _WIN32
je _nlr_jump_fail # fail if nlr_top is NULL
#else
je nlr_jump_fail # fail if nlr_top is NULL
#endif
mov 4(%esp), %eax # load return value
mov %eax, 4(%edx) # store return value
mov (%edx), %eax # load prev nlr_top