(ASM_OUTPUT_SHORT): Fix typo in previous change.

From-SVN: r3749
This commit is contained in:
Richard Kenner 1993-03-15 17:40:29 -05:00
parent b7d9299b30
commit 690ef02f08

View File

@ -1476,7 +1476,7 @@ literal_section () \
/* Likewise for `char' and `short' constants. */
#define ASM_OUTPUT_SHORT(FILE,VALUE) \
fprintf (FILE, "\t.short %d\n", \
fprintf (FILE, "\t.word %d\n", \
(GET_CODE (VALUE) == CONST_INT \
? INTVAL (VALUE) & 0xffff : (abort (), 0)))