]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Replace unsigned long with __SIZE_TYPE__
authorhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 17 Nov 2014 13:38:38 +0000 (13:38 +0000)
committerhjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 17 Nov 2014 13:38:38 +0000 (13:38 +0000)
* g++.dg/ipa/pr63894.C (new): Replace unsigned long with
__SIZE_TYPE__.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217654 138bc75d-0d04-0410-961f-82ee72b054a4

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

index eefdf3b29bc47db054acb221cf954d070a9bcfb6..2a5f8fc47ad589dac3b2cc879c56b6ff05005afe 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 d0ba96bc5a3841da7f402ceb42eda71015aad60c..54409752758c294bd3cf075bd11dbb6c7ff8cd13 100644 (file)
@@ -3,7 +3,7 @@
 
 struct A
 {
-  void *operator new(unsigned long, int);
+  void *operator new(__SIZE_TYPE__, int);
 };
 class C
 {