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
This commit is contained in:
parent
cf3c6c99b8
commit
b007569d7c
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue