summaryrefslogtreecommitdiff
path: root/gcc/config/dsp16xx
diff options
context:
space:
mode:
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>1996-10-28 13:37:55 +0000
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>1996-10-28 13:37:55 +0000
commit8591831ddfc90d475b801ab96f4b893517eb9543 (patch)
tree47817a0e940ccbe2a6ba089f6c3e90fc2b75d62d /gcc/config/dsp16xx
parent9915044d7c6174269d0c6c4035a3ac35520a1c0f (diff)
downloadgcc-8591831ddfc90d475b801ab96f4b893517eb9543.tar.gz
(ASM_OUTPUT_BYTE): adjust definition to actual type of VALUE,
which is HOST_WIDE_INT. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/dsp16xx')
-rw-r--r--gcc/config/dsp16xx/dsp16xx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/dsp16xx/dsp16xx.h b/gcc/config/dsp16xx/dsp16xx.h
index bb389044bd3..bee9abb9835 100644
--- a/gcc/config/dsp16xx/dsp16xx.h
+++ b/gcc/config/dsp16xx/dsp16xx.h
@@ -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 */