mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-18 11:40:54 +08:00
* g++.dg/opt/unroll1.C: Change unsigned to __SIZE_TYPE__.
From-SVN: r71891
This commit is contained in:
parent
e8cadb6970
commit
ea0738f236
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user