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
This commit is contained in:
Igor Shevlyakov 2002-09-08 04:08:11 +00:00 committed by Richard Henderson
parent 7fa86a10d6
commit 5dd7822000
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
PR opt/7814

View File

@ -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))
{
#if 0