diff options
author | Jakub Jelinek <jakub@redhat.com> | 2015-02-13 15:42:30 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-02-13 15:42:30 +0100 |
commit | 730f474bf90d59582144b23c9176276ab680ef56 (patch) | |
tree | 057890be2e241d8ec94af725a0ddbbe26fa20fb6 /gcc/cp | |
parent | 1e0c223f94b886b4d4e54582a1fb4ea9b5feb722 (diff) | |
download | gcc-730f474bf90d59582144b23c9176276ab680ef56.zip gcc-730f474bf90d59582144b23c9176276ab680ef56.tar.gz gcc-730f474bf90d59582144b23c9176276ab680ef56.tar.bz2 |
re PR ipa/65034 (ICE (segfault) on arm-linux-gnueabihf)
PR ipa/65034
* stmt.c (emit_case_nodes): Use void_type_node instead of
NULL_TREE as LABEL_DECL type.
* decl.c (start_preparsed_function): Use void_type_node instead
of NULL_TREE as LABEL_DECL type.
* g++.dg/ipa/pr65034.C: New test.
From-SVN: r220683
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/decl.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f181554..8132e2f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2015-02-13 Jakub Jelinek <jakub@redhat.com> + + PR ipa/65034 + * decl.c (start_preparsed_function): Use void_type_node instead + of NULL_TREE as LABEL_DECL type. + 2015-02-12 Jason Merrill <jason@redhat.com> PR c++/64898 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 810acd5..f95a61a 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -13721,7 +13721,7 @@ start_preparsed_function (tree decl1, tree attrs, int flags) && targetm.cxx.cdtor_returns_this ())) { cdtor_label = build_decl (input_location, - LABEL_DECL, NULL_TREE, NULL_TREE); + LABEL_DECL, NULL_TREE, void_type_node); DECL_CONTEXT (cdtor_label) = current_function_decl; } |