From: H.J. Lu Date: Mon, 17 Nov 2014 13:38:38 +0000 (+0000) Subject: Replace unsigned long with __SIZE_TYPE__ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5134529b25c1fd448e6589876a84d0095a5ffc35;p=gcc.git Replace unsigned long with __SIZE_TYPE__ * g++.dg/ipa/pr63894.C (new): Replace unsigned long with __SIZE_TYPE__. From-SVN: r217654 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index eefdf3b29bc..2a5f8fc47ad 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-11-17 H.J. Lu + + * g++.dg/ipa/pr63894.C (new): Replace unsigned long with + __SIZE_TYPE__. + 2014-11-17 Richard Biener PR middle-end/63898 diff --git a/gcc/testsuite/g++.dg/ipa/pr63894.C b/gcc/testsuite/g++.dg/ipa/pr63894.C index d0ba96bc5a3..54409752758 100644 --- a/gcc/testsuite/g++.dg/ipa/pr63894.C +++ b/gcc/testsuite/g++.dg/ipa/pr63894.C @@ -3,7 +3,7 @@ struct A { - void *operator new(unsigned long, int); + void *operator new(__SIZE_TYPE__, int); }; class C {