diff mbox

C++ PATCH for core issue 903 (C++11 null pointer constant)

Message ID 4E53CBA2.2020501@redhat.com
State New
Headers show

Commit Message

Jason Merrill Aug. 23, 2011, 3:47 p.m. UTC
C++11 greatly expands the set of constant expressions, which aggravates 
the existing issue with overloading and null pointer constants.  If an 
expression could potentially be a constant expression, we need to find 
its constant value in order to determine how it interacts with overload 
resolution.  In C++03 that doesn't involve much beyond the constant 
folding we already do, but in C++11 that means substituting into 
constexpr functions, so we decided to limit null pointer constants in 
C++11 to literal 0 (or 0L, etc).

This patch doesn't attempt to treat things like 0+0 as non-null pointer 
constants yet, just avoids doing anything beyond the usual constant folding.

Tested x86_64-pc-linux-gnu, applying to trunk.
diff mbox

Patch

commit af3382cf8702c1dfb5a98b2b2093aac21a5c4dff
Author: Jason Merrill <jason@redhat.com>
Date:   Fri Aug 19 10:38:12 2011 -0400

    	Core 903 (partial)
    	* call.c (null_ptr_cst_p): Only 0 qualifies in C++11.

diff --git a/gcc/cp/call.c b/gcc/cp/call.c
index d2700cb..e5f65b3 100644
--- a/gcc/cp/call.c
+++ b/gcc/cp/call.c
@@ -541,20 +541,14 @@  null_ptr_cst_p (tree t)
     return true;
   if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)))
     {
-      if (cxx_dialect >= cxx0x)
-	{
-	  t = fold_non_dependent_expr (t);
-	  t = maybe_constant_value (t);
-	  if (TREE_CONSTANT (t) && integer_zerop (t))
-	    return true;
-	}
-      else
+      /* Core issue 903 says only literal 0 is a null pointer constant.  */
+      if (cxx_dialect < cxx0x)
 	{
 	  t = integral_constant_value (t);
 	  STRIP_NOPS (t);
-	  if (integer_zerop (t) && !TREE_OVERFLOW (t))
-	    return true;
 	}
+      if (integer_zerop (t) && !TREE_OVERFLOW (t))
+	return true;
     }
   return false;
 }
diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-nullptr.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-nullptr.C
index 7ac53db..6381323 100644
--- a/gcc/testsuite/g++.dg/cpp0x/constexpr-nullptr.C
+++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-nullptr.C
@@ -2,5 +2,5 @@ 
 
 constexpr int zero() { return 0; }
 
-void* ptr1 = zero(); // #1
-constexpr void* ptr2 = zero(); // #2
+void* ptr1 = zero();		// { dg-error "int" }
+constexpr void* ptr2 = zero();	// { dg-error "int" }