Skip to content
Snippets Groups Projects
Commit 8c0b2b04 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-07-11 08:43:35 by simonmar]

workaround for strange gcc-ism: elide 'popl %edx' in the epilogue.
parent 56b76501
No related merge requests found
......@@ -733,6 +733,7 @@ sub mangle_asm {
$e =~ s/^\tret\n//;
$e =~ s/^\tpopl \%edi\n//;
$e =~ s/^\tpopl \%esi\n//;
$e =~ s/^\tpopl \%edx\n//;
$e =~ s/^\tpopl \%ecx\n//;
$e =~ s/^\taddl \$\d+,\%esp\n//;
$e =~ s/^\tsubl \$-\d+,\%esp\n//;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment