fix an x86 fast isel issue where we'd completely give up on folding an address
[oota-llvm.git] / test / CodeGen / XCore / private.ll
index 888ccdf297d59cd46ef0eb5358a1241a06811a94..c595a6df4950fc07a58feb63186ae9a678c54993 100644 (file)
@@ -1,6 +1,6 @@
 ; Test to make sure that the 'private' is used correctly.
 ;
-; RUN: llvm-as < %s | llc -march=xcore > %t
+; RUN: llc < %s -march=xcore > %t
 ; RUN: grep .Lfoo: %t
 ; RUN: grep bl.*\.Lfoo %t
 ; RUN: grep .Lbaz: %t
@@ -12,7 +12,7 @@ define private void @foo() {
         ret void
 }
 
-@baz = private global i32 4;
+@baz = private global i32 4
 
 define i32 @bar() {
         call void @foo()