Keep track of analysis information inherited from Module pass manager.
[oota-llvm.git] / test / C++Frontend / 2003-09-29-ArgumentNumberMismatch.cpp
index 19435c6075064fedb5914e09d4f1341dd16a6a8b..4873123d124176eba3373123cfa9bfc32bf3582d 100644 (file)
@@ -5,13 +5,13 @@
 // was mistakenly "thinking" that 'foo' took a structure by component.
 
 struct C {
-        int A, B;
-        ~C() {}
+  int A, B;
+  ~C() {}
 };
 
 void foo(C b);
 
 void test(C *P) {
-       foo(*P);
+  foo(*P);
 }