Replace unsigned long with __SIZE_TYPE__

* g++.dg/ipa/pr63894.C (new): Replace unsigned long with
	__SIZE_TYPE__.

From-SVN: r217654
This commit is contained in:
H.J. Lu 2014-11-17 13:38:38 +00:00 committed by H.J. Lu
parent 3d8b06d337
commit 5134529b25
2 changed files with 6 additions and 1 deletions

View 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

View File

@ -3,7 +3,7 @@
struct A
{
void *operator new(unsigned long, int);
void *operator new(__SIZE_TYPE__, int);
};
class C
{