[X86][SSE] Added tests for i8/i16 vector shifts
[oota-llvm.git] / test / CodeGen / ARM / private.ll
index fba56b4ffeeb92293a3d680f0effabbda62af6d3..fab8f37f989aadf70849b30dc4adb6640601b20d 100644 (file)
@@ -1,12 +1,11 @@
 ; Test to make sure that the 'private' is used correctly.
 ;
-; RUN: llc < %s -mtriple=arm-linux-gnueabi > %t
-; RUN: grep .Lfoo: %t
-; RUN: egrep bl.*\.Lfoo %t
-; RUN: grep .Lbaz: %t
-; RUN: grep long.*\.Lbaz %t
-
-declare void @foo()
+; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
+; CHECK: .Lfoo:
+; CHECK-LABEL: bar:
+; CHECK: bl .Lfoo
+; CHECK: .long .Lbaz
+; CHECK: .Lbaz:
 
 define private void @foo() {
         ret void
@@ -16,7 +15,7 @@ define private void @foo() {
 
 define i32 @bar() {
         call void @foo()
-       %1 = load i32* @baz, align 4
+       %1 = load i32, i32* @baz, align 4
         ret i32 %1
 }