+2017-08-22 Richard Biener <rguenther@suse.de>
+
+ * tree-inline.c (remap_type_1): Change asserts on TYPE_SIZE[_UNIT]
+ to allow for free-lang-data replacements similar to verify_type_variant.
+
2017-08-22 Richard Sandiford <richard.sandiford@linaro.org>
Alan Hayward <alan.hayward@arm.com>
David Sherwood <david.sherwood@arm.com>
/* All variants of type share the same size, so use the already remaped data. */
if (TYPE_MAIN_VARIANT (new_tree) != new_tree)
{
- gcc_checking_assert (TYPE_SIZE (type) == TYPE_SIZE (TYPE_MAIN_VARIANT (type)));
- gcc_checking_assert (TYPE_SIZE_UNIT (type) == TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type)));
-
+ tree s = TYPE_SIZE (type);
+ tree mvs = TYPE_SIZE (TYPE_MAIN_VARIANT (type));
+ tree su = TYPE_SIZE_UNIT (type);
+ tree mvsu = TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type));
+ gcc_checking_assert ((TREE_CODE (s) == PLACEHOLDER_EXPR
+ && (TREE_CODE (mvs) == PLACEHOLDER_EXPR))
+ || s == mvs);
+ gcc_checking_assert ((TREE_CODE (su) == PLACEHOLDER_EXPR
+ && (TREE_CODE (mvsu) == PLACEHOLDER_EXPR))
+ || su == mvsu);
TYPE_SIZE (new_tree) = TYPE_SIZE (TYPE_MAIN_VARIANT (new_tree));
TYPE_SIZE_UNIT (new_tree) = TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (new_tree));
}