Commit 690ef02f by Richard Kenner

(ASM_OUTPUT_SHORT): Fix typo in previous change.

From-SVN: r3749
parent b7d9299b
......@@ -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)))
......
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