Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
41809a1c
Commit
41809a1c
authored
Apr 20, 2014
by
Paul Sokolovsky
Browse files
nlrx86.S: Another ifdef for win32 symbol underscoring issues.
parent
b76fd842
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/nlrx86.S
View file @
41809a1c
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment