aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/init.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2010-11-03 11:33:05 -0400
committerJason Merrill <jason@gcc.gnu.org>2010-11-03 11:33:05 -0400
commita76c13bf23a6ccccbcf3abd18f07ab31444a5add (patch)
treec393a49d0c8a1b260eabf6894631563b24a4ed90 /gcc/cp/init.c
parent836dda671ab51efe7d749166546e34c8c4296bee (diff)
downloadgcc-a76c13bf23a6ccccbcf3abd18f07ab31444a5add.zip
gcc-a76c13bf23a6ccccbcf3abd18f07ab31444a5add.tar.gz
gcc-a76c13bf23a6ccccbcf3abd18f07ab31444a5add.tar.bz2
re PR c++/46277 (Revision 166167 failed to build 252.eon in SPEC CPU 2000)
PR c++/46277 * init.c (expand_default_init): Avoid ICE if we can't figure out which function is being called. From-SVN: r166254
Diffstat (limited to 'gcc/cp/init.c')
-rw-r--r--gcc/cp/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/init.c b/gcc/cp/init.c
index 1f73d14..ab834bf 100644
--- a/gcc/cp/init.c
+++ b/gcc/cp/init.c
@@ -1443,7 +1443,7 @@ expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
if (exp == true_exp && TREE_CODE (rval) == CALL_EXPR)
{
tree fn = get_callee_fndecl (rval);
- if (DECL_DECLARED_CONSTEXPR_P (fn))
+ if (fn && DECL_DECLARED_CONSTEXPR_P (fn))
{
tree e = maybe_constant_value (rval);
if (TREE_CONSTANT (e))