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

pull/512/merge
Paul Sokolovsky 2014-04-20 22:14:58 +03:00
rodzic b76fd842f0
commit 41809a1ced
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -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