(ASM_OUTPUT_BYTE): adjust definition to actual type of VALUE,
authorJoern Rennecke <amylaar@gcc.gnu.org>
Mon, 28 Oct 1996 13:37:55 +0000 (13:37 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Mon, 28 Oct 1996 13:37:55 +0000 (13:37 +0000)
which is HOST_WIDE_INT.

From-SVN: r13045

gcc/config/dsp16xx/dsp16xx.h

index bb389044bd3fa1fc2b1e3c9ddce556275e9db06a..bee9abb9835de217e7597bf14d656f511daec8aa 100644 (file)
@@ -1669,7 +1669,9 @@ const_section ()                                                   \
 #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.  */
-#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
    assembler we have to do it one letter at a time */