Skip to content
Snippets Groups Projects
Commit f29eb245 authored by Raymond Toy's avatar Raymond Toy
Browse files

Solaris/x86 cc doesn't like $##bytes; use $bytes instead. This works

fine with gcc (on darwin and linux).
parent a29c4320
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ GNAME(x): ; ...@@ -71,7 +71,7 @@ GNAME(x): ;
#define STACK_PROLOGUE(bytes) \ #define STACK_PROLOGUE(bytes) \
pushl %ebp ; \ pushl %ebp ; \
mov %esp, %ebp ; \ mov %esp, %ebp ; \
subl $##bytes, %esp ; \ subl $bytes, %esp ; \
andl $-16, %esp ; andl $-16, %esp ;
/* Undo STACK_PROLOGUE */ /* Undo STACK_PROLOGUE */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment