diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2014-11-17 13:38:38 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2014-11-17 05:38:38 -0800 |
commit | 5134529b25c1fd448e6589876a84d0095a5ffc35 (patch) | |
tree | bfa50a00c9e8c13b138fa17ce882a7145c6c383a /gcc | |
parent | 3d8b06d33798fe2a4afd038f63b76fa9fa25e284 (diff) | |
download | gcc-5134529b25c1fd448e6589876a84d0095a5ffc35.zip gcc-5134529b25c1fd448e6589876a84d0095a5ffc35.tar.gz gcc-5134529b25c1fd448e6589876a84d0095a5ffc35.tar.bz2 |
Replace unsigned long with __SIZE_TYPE__
* g++.dg/ipa/pr63894.C (new): Replace unsigned long with
__SIZE_TYPE__.
From-SVN: r217654
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/ipa/pr63894.C | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index eefdf3b..2a5f8fc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/g++.dg/ipa/pr63894.C b/gcc/testsuite/g++.dg/ipa/pr63894.C index d0ba96b..5440975 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 { |