diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -7110,11 +7110,9 @@ build_range_type_1 (tree type, tree lowval, tree highval, bool shared) TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type); if ((TYPE_MIN_VALUE (itype) - && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST - && !CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (itype))) + && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST) || (TYPE_MAX_VALUE (itype) - && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST - && !CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (itype)))) + && TREE_CODE (TYPE_MAX_VALUE (itype)) != INTEGER_CST)) { /* Since we cannot reliably merge this type, we need to compare it using structural equality checks. */ |