Propagate zest through logical shift.
[oota-llvm.git] / test / FrontendC / 2002-08-02-UnionTest.c
index bc44e461dec5119b7be84159c2bb0b19a095895f..e2b8c3dd401c82673486269644a84205bdcbe6d1 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
 
 /* In this testcase, the return value of foo() is being promotedto a register
  * which breaks stuff
@@ -13,7 +13,7 @@ union X foo() {
   return Global;
 }
 
-void main() {
+int main() {
   union X test = foo();
   printf("0x%p", test.B);
 }