Don't mark scalar integer multiplication as Expand on x86, since x86
[oota-llvm.git] / test / C++Frontend / 2003-09-22-CompositeExprValue.cpp
index b1373ba66dc65b7390ebc928c4a13dbe1ad7edff..a8208adc5127cef9e28a19b7fb0c44af4329df29 100644 (file)
@@ -2,10 +2,10 @@
 
 struct duration {
  duration operator/=(int c) {
-       return *this;
+  return *this;
   }
 };
 
 void a000090() {
-       duration() /= 1;
+  duration() /= 1;
 }