Don't mark scalar integer multiplication as Expand on x86, since x86
[oota-llvm.git] / test / C++Frontend / 2003-09-22-CompositeExprValue.cpp
index 9ee0289658ff8a912eed661def6e524a80c1736c..a8208adc5127cef9e28a19b7fb0c44af4329df29 100644 (file)
@@ -1,9 +1,11 @@
+// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
+
 struct duration {
  duration operator/=(int c) {
-       return *this;
+  return *this;
   }
 };
 
 void a000090() {
-       duration() /= 1;
+  duration() /= 1;
 }