Commit f0184d42 by Richard Sandiford Committed by Richard Sandiford

re PR bootstrap/53021 (bootstrap failure on Linux/ia32)

gcc/
	PR bootstrap/53021
	* rtl.c (rtx_code_size): Handle ADDRESS.

From-SVN: r186549
parent fe92f29f
2012-04-17 Richard Sandiford <rdsandiford@googlemail.com>
PR bootstrap/53021
* rtl.c (rtx_code_size): Handle ADDRESS.
2012-04-17 Tom de Vries <tom@codesourcery.com>
* tree-iterator.c (append_to_statement_list_1): Handle case that *list_p
......
......@@ -110,7 +110,8 @@ const enum rtx_class rtx_class[NUM_RTX_CODE] = {
const unsigned char rtx_code_size[NUM_RTX_CODE] = {
#define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) \
((ENUM) == CONST_INT || (ENUM) == CONST_DOUBLE || (ENUM) == CONST_FIXED\
(((ENUM) == CONST_INT || (ENUM) == CONST_DOUBLE \
|| (ENUM) == CONST_FIXED || (ENUM) == ADDRESS) \
? RTX_HDR_SIZE + (sizeof FORMAT - 1) * sizeof (HOST_WIDE_INT) \
: RTX_HDR_SIZE + (sizeof FORMAT - 1) * sizeof (rtunion)),
......
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