Commit b2fba9b7 by Joern Rennecke

(ASM_OUTPUT_BYTE): adjust definition to actual type of VALUE,

which is HOST_WIDE_INT.

From-SVN: r13045
parent 57bc5ea0
...@@ -1669,7 +1669,9 @@ const_section () \ ...@@ -1669,7 +1669,9 @@ const_section () \
#define ASM_OUTPUT_INT(FILE, EXP) asm_output_long(FILE,INTVAL(EXP)) #define ASM_OUTPUT_INT(FILE, EXP) asm_output_long(FILE,INTVAL(EXP))
/* This is how to output an assembler line for a numeric constant byte. */ /* This is how to output an assembler line for a numeric constant byte. */
#define ASM_OUTPUT_BYTE(FILE,VALUE) ASM_OUTPUT_CHAR(FILE,VALUE) #define ASM_OUTPUT_BYTE(FILE,VALUE) \
fprintf ((FILE), "\tint %ld\n", (long)(VALUE))
/* This is how we output a 'c' character string. For the 16xx /* This is how we output a 'c' character string. For the 16xx
assembler we have to do it one letter at a time */ assembler we have to do it one letter at a time */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment