Commit b007569d by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

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
parent cf3c6c99
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> 2002-02-13 Stan Shebs <shebs@apple.com>
* c-typeck.c (digest_init): Handle vectors. * c-typeck.c (digest_init): Handle vectors.
......
...@@ -1941,7 +1941,7 @@ mmix_assemble_integer (x, size, aligned_p) ...@@ -1941,7 +1941,7 @@ mmix_assemble_integer (x, size, aligned_p)
return true; return true;
case 4: case 4:
if (GET_CODE (x) != CONST_INT && GET_CODE (x) != SYMBOL_REF) if (GET_CODE (x) != CONST_INT)
{ {
aligned_p = 0; aligned_p = 0;
break; break;
......
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