Let llc and opt override "-target-cpu" and "-target-features" via command line
[oota-llvm.git] / test / CodeGen / X86 / store-empty-member.ll
index 98c1a9904d4eb955761b194d9619d5a272f62440..aea85b94d41401b67753173c54e82c6bd8ba5ac6 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 | FileCheck %s
+; RUN: llc < %s -march=x86 | FileCheck %s
 
 ; Don't crash on an empty struct member.
 
@@ -9,6 +9,6 @@
 
 define void @foo() nounwind {
   %1 = alloca %testType
-  volatile store %testType {i32 1, [0 x i32] zeroinitializer, i32 2}, %testType* %1
+  store volatile %testType {i32 1, [0 x i32] zeroinitializer, i32 2}, %testType* %1
   ret void
 }