Replace unsigned long with __SIZE_TYPE__
authorH.J. Lu <hongjiu.lu@intel.com>
Mon, 17 Nov 2014 13:38:38 +0000 (13:38 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Mon, 17 Nov 2014 13:38:38 +0000 (05:38 -0800)
* g++.dg/ipa/pr63894.C (new): Replace unsigned long with
__SIZE_TYPE__.

From-SVN: r217654

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ipa/pr63894.C

index eefdf3b..2a5f8fc 100644 (file)
@@ -1,3 +1,8 @@
+2014-11-17  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * g++.dg/ipa/pr63894.C (new): Replace unsigned long with
+       __SIZE_TYPE__.
+
 2014-11-17  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/63898
index d0ba96b..5440975 100644 (file)
@@ -3,7 +3,7 @@
 
 struct A
 {
-  void *operator new(unsigned long, int);
+  void *operator new(__SIZE_TYPE__, int);
 };
 class C
 {