From: Fariborz Jahanian Date: Wed, 11 Nov 2009 22:49:09 +0000 (+0000) Subject: Make test more platform independent. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f42d74f41076542fc9b4f4d5fa034dfa93b3c916;p=clang Make test more platform independent. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86890 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/new-operator-phi.cpp b/test/CodeGenCXX/new-operator-phi.cpp index 03f528cfbe..a5eed28ccf 100644 --- a/test/CodeGenCXX/new-operator-phi.cpp +++ b/test/CodeGenCXX/new-operator-phi.cpp @@ -1,7 +1,8 @@ // RUN: clang-cc -emit-llvm-only -verify %s // PR5454 +#include -class X {static void * operator new(unsigned long size) throw(); X(int); }; +class X {static void * operator new(size_t size) throw(); X(int); }; int a(), b(); void b(int x) {