MAke this test portable.

llvm-svn: 36164
This commit is contained in:
Chris Lattner 2007-04-16 21:18:56 +00:00
parent d3bd00c19e
commit 770228304e

View File

@ -1,7 +1,9 @@
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
// Default placement versions of operator new.
inline void* operator new(unsigned, void* __p) throw();
#include <new>
void* operator new(size_t, void* __p) throw();
template<typename _CharT>