diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2002-02-13 02:11:51 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2002-02-13 02:11:51 +0000 |
commit | b007569d7cc8b1235b74c59f7e989cbc41612ab8 (patch) | |
tree | 63d6933f17f62bbea767b2624e27ba006931f733 /gcc | |
parent | cf3c6c99b86ed87b7028c0d2ba7fd639aa92010a (diff) | |
download | gcc-b007569d7cc8b1235b74c59f7e989cbc41612ab8.zip gcc-b007569d7cc8b1235b74c59f7e989cbc41612ab8.tar.gz gcc-b007569d7cc8b1235b74c59f7e989cbc41612ab8.tar.bz2 |
mmix.c (mmix_assemble_integer): Don't handle SYMBOL_REF.
* config/mmix/mmix.c (mmix_assemble_integer) <case 4>: Don't
handle SYMBOL_REF.
From-SVN: r49718
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mmix/mmix.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7e5f8cd..1cf8f50 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-02-13 Hans-Peter Nilsson <hp@bitrange.com> + + * config/mmix/mmix.c (mmix_assemble_integer) <case 4>: Don't + handle SYMBOL_REF. + 2002-02-13 Stan Shebs <shebs@apple.com> * c-typeck.c (digest_init): Handle vectors. diff --git a/gcc/config/mmix/mmix.c b/gcc/config/mmix/mmix.c index 50ab71b..7eb3e43 100644 --- a/gcc/config/mmix/mmix.c +++ b/gcc/config/mmix/mmix.c @@ -1941,7 +1941,7 @@ mmix_assemble_integer (x, size, aligned_p) return true; case 4: - if (GET_CODE (x) != CONST_INT && GET_CODE (x) != SYMBOL_REF) + if (GET_CODE (x) != CONST_INT) { aligned_p = 0; break; |