summaryrefslogtreecommitdiff
path: root/gcc/ipa-reference.c
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-04 00:05:56 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-04 00:05:56 +0000
commit9dd2d192a7ab0575471e814d590ec2a736ed6dd8 (patch)
tree44509ce0a3565ffd22029192c721507adf734681 /gcc/ipa-reference.c
parent843a4f91a377cf2d6889e871c0d889440c38ac6d (diff)
downloadgcc-9dd2d192a7ab0575471e814d590ec2a736ed6dd8.tar.gz
2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR middle-end/32304 * ipa-reference.c (has_proper_scope_for_analysis): Return false when the decl's type has TYPE_NEEDS_CONSTRUCTING set. 2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com> PR middle-end/32304 * g++.dg/torture/pr32304.C: New testcase. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127191 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r--gcc/ipa-reference.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c
index 5e1a6ebbaeb..1a962c52cdb 100644
--- a/gcc/ipa-reference.c
+++ b/gcc/ipa-reference.c
@@ -267,6 +267,10 @@ has_proper_scope_for_analysis (tree t)
if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
return false;
+ /* We cannot touch decls where the type needs constructing. */
+ if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
+ return false;
+
/* This is a variable we care about. Check if we have seen it
before, and if not add it the set of variables we care about. */
if (!bitmap_bit_p (all_module_statics, DECL_UID (t)))