From: Stan Cox Date: Thu, 29 May 1997 19:36:53 +0000 (+0000) Subject: (ASM_OUTPUT_REG_{PUSH,POP}): add %% before register name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b078c5c69ca6f58eb0367c0569e426b69b03c1af;p=gcc.git (ASM_OUTPUT_REG_{PUSH,POP}): add %% before register name. From-SVN: r14137 --- diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 6acb1ba3af5..6a4571cc1dc 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -2447,13 +2447,13 @@ do { long l; \ It need not be very fast code. */ #define ASM_OUTPUT_REG_PUSH(FILE,REGNO) \ - fprintf (FILE, "\tpushl e%s\n", reg_names[REGNO]) + fprintf (FILE, "\tpushl %%e%s\n", reg_names[REGNO]) /* This is how to output an insn to pop a register from the stack. It need not be very fast code. */ #define ASM_OUTPUT_REG_POP(FILE,REGNO) \ - fprintf (FILE, "\tpopl e%s\n", reg_names[REGNO]) + fprintf (FILE, "\tpopl %%e%s\n", reg_names[REGNO]) /* This is how to output an element of a case-vector that is absolute. */