------- Comment #3 from pinskia at gcc dot gnu dot org 2006-04-24 01:54 ------- This patch fixes the ICE for me but I don't know if it is the correct one: Index: tree.h =================================================================== --- tree.h (revision 113199) +++ tree.h (working copy) @@ -3981,7 +3981,7 @@ extern bool contains_placeholder_p (tree case of a constant to save time. Also check for null. */
#define CONTAINS_PLACEHOLDER_P(EXP) \ - ((EXP) != 0 && ! TREE_CONSTANT (EXP) && contains_placeholder_p (EXP)) + ((EXP) != 0 && !TYPE_P (EXP) && !TREE_CONSTANT (EXP) && contains_placeholder_p (EXP)) /* Return 1 if any part of the computation of TYPE involves a PLACEHOLDER_EXPR. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and field --------------------------------------------------------------------------- Basicially a type can never contain a placeholder expression and TREE_CONSTANT does not exist on a type. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27210