Fix for PR1567, which involves a weird bug on non-32bit architectures and silly C...
[oota-llvm.git] / test / CFrontend / 2002-07-30-SubregSetAssertion.c
index 7eab19b045624c1953fac0ac9f077c74e0e76869..6d4f9f62058166f57c5a447bc95c1ef14bf6c4a6 100644 (file)
@@ -6,7 +6,7 @@ union X {
 };
 
 union X foo() {
-       union X A;
-       A.B = (void*)123;
-       return A;
+  union X A;
+  A.B = (void*)123;
+  return A;
 }