Don't mark scalar integer multiplication as Expand on x86, since x86
[oota-llvm.git] / test / C++Frontend / 2003-08-28-ForwardType.cpp
index 1142317a8b9937cc2cc1f6c5a966543ee184a8ee..38c4e2d84a0739006b69b3555f3f53bd27ba5f1d 100644 (file)
@@ -1,14 +1,15 @@
 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
 
-// XFAIL: darwin,sun
 // 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>
-struct stdio_filebuf 
+struct stdio_filebuf
 {  stdio_filebuf();
-  
+
 };
 
 extern stdio_filebuf<char> buf_cout;