MAke this test portable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36164 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-04-16 21:18:56 +00:00
parent 6852c616ed
commit c27b4eff5c

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>