2017-05-30 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
+ 2017-03-10 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/79896
+ * decl.c (finish_enum_value_list): If value is error_mark_node,
+ don't copy it and change its type.
+ * init.c (constant_value_1): Return error_mark_node if DECL_INITIAL
+ of CONST_DECL is error_mark_node.
+
2017-02-22 Jakub Jelinek <jakub@redhat.com>
PR c++/79664
input_location = saved_location;
/* Do not clobber shared ints. */
- value = copy_node (value);
+ if (value != error_mark_node)
+ {
+ value = copy_node (value);
- TREE_TYPE (value) = enumtype;
+ TREE_TYPE (value) = enumtype;
+ }
DECL_INITIAL (decl) = value;
}
init = DECL_INITIAL (decl);
if (init == error_mark_node)
{
- if (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
+ if (TREE_CODE (decl) == CONST_DECL
+ || DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
/* Treat the error as a constant to avoid cascading errors on
excessively recursive template instantiation (c++/9335). */
return init;
2017-05-30 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
+ 2017-03-10 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/79896
+ * g++.dg/ext/int128-5.C: New test.
+
2017-03-09 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/79944