diff options
author | Jason Merrill <jason@redhat.com> | 2013-05-13 15:32:42 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2013-05-13 15:32:42 -0400 |
commit | 7c0b157d7cd49c57b769726e6838359014512e73 (patch) | |
tree | fdb89b360d4f13a418472311ee2954a9b37c39d6 /gcc/cp/call.c | |
parent | 783faa4728c59b3ec494ebfc1a6a08597c085756 (diff) | |
download | gcc-7c0b157d7cd49c57b769726e6838359014512e73.zip gcc-7c0b157d7cd49c57b769726e6838359014512e73.tar.gz gcc-7c0b157d7cd49c57b769726e6838359014512e73.tar.bz2 |
re PR c++/56998 (ICE in value_dependent_expression_p, at cp/pt.c:19598)
PR c++/56998
* call.c (null_ptr_cst_p): An expression with side-effects can't
be a C++03 null pointer constant.
From-SVN: r198845
Diffstat (limited to 'gcc/cp/call.c')
-rw-r--r-- | gcc/cp/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/call.c b/gcc/cp/call.c index bd8f531..9f3a50d 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -554,7 +554,7 @@ null_ptr_cst_p (tree t) if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t))) { /* Core issue 903 says only literal 0 is a null pointer constant. */ - if (cxx_dialect < cxx0x) + if (cxx_dialect < cxx0x && !TREE_SIDE_EFFECTS (t)) t = maybe_constant_value (fold_non_dependent_expr_sfinae (t, tf_none)); STRIP_NOPS (t); if (integer_zerop (t) && !TREE_OVERFLOW (t)) |