diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-15 22:40:29 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-03-15 22:40:29 +0000 |
commit | ee124cdd876501925916ce6e9b264ed3c7443267 (patch) | |
tree | b118859638cfaae0b2c36140deec41e1e68f4d8a /gcc/config | |
parent | 68f7af5fb144e36d27961904f4ae1faa514d249b (diff) | |
download | gcc-ee124cdd876501925916ce6e9b264ed3c7443267.tar.gz |
(ASM_OUTPUT_SHORT): Fix typo in previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/alpha/alpha.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 5d352493ab2..298b9996c0d 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -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))) |