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