Commit 5dd78220 by Igor Shevlyakov Committed by Richard Henderson

varasm.c (decode_rtx_const): Don't check undefined field for CONST_VECTOR.

        * varasm.c (decode_rtx_const): Don't check undefined field for
	CONST_VECTOR.

From-SVN: r56934
parent 7fa86a10
2002-09-07 Igor Shevlyakov <igor@microunity.com>
* varasm.c (decode_rtx_const): Don't check undefined field for
CONST_VECTOR.
2002-09-07 Glen Nakamura <glen@imodulo.com> 2002-09-07 Glen Nakamura <glen@imodulo.com>
PR opt/7814 PR opt/7814
......
...@@ -3047,7 +3047,7 @@ decode_rtx_const (mode, x, value) ...@@ -3047,7 +3047,7 @@ decode_rtx_const (mode, x, value)
} }
} }
if (value->kind > RTX_DOUBLE && value->un.addr.base != 0) if (value->kind > RTX_VECTOR && value->un.addr.base != 0)
switch (GET_CODE (value->un.addr.base)) switch (GET_CODE (value->un.addr.base))
{ {
#if 0 #if 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