Skip to content
Snippets Groups Projects
Commit 41809a1c authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

parent b76fd842
Branches
No related tags found
No related merge requests found
...@@ -61,7 +61,11 @@ nlr_jump: ...@@ -61,7 +61,11 @@ nlr_jump:
#endif #endif
mov nlr_top, %edx # load nlr_top mov nlr_top, %edx # load nlr_top
test %edx, %edx # check for nlr_top being NULL 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 je nlr_jump_fail # fail if nlr_top is NULL
#endif
mov 4(%esp), %eax # load return value mov 4(%esp), %eax # load return value
mov %eax, 4(%edx) # store return value mov %eax, 4(%edx) # store return value
mov (%edx), %eax # load prev nlr_top mov (%edx), %eax # load prev nlr_top
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment