* g++.dg/opt/unroll1.C: Change unsigned to __SIZE_TYPE__.

From-SVN: r71891
This commit is contained in:
Eric Botcazou 2003-09-29 08:14:59 +02:00 committed by Eric Botcazou
parent e8cadb6970
commit ea0738f236
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-09-29 Eric Botcazou <ebotcazou@libertysurf.fr>
* g++.dg/opt/unroll1.C: Change unsigned to __SIZE_TYPE__.
2003-09-28 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* g++.dg/template/friend19.C: Fix typo.

View File

@ -9,7 +9,9 @@
// { dg-do run }
// { dg-options "-O2 -fno-exceptions -funroll-loops" }
inline void* operator new(unsigned int, void* __p) throw() { return __p; }
typedef __SIZE_TYPE__ size_t;
inline void* operator new(size_t, void* __p) throw() { return __p; }
inline void operator delete (void*, void*) throw() { };
class Loc;