ps][microMIPS] Implement CodeGen support for SLL16 and SRL16 instructions
[oota-llvm.git] / test / CodeGen / Mips / private.ll
index a1b45c2a63e1adf48b1a1bcf9c866c17d1d0404c..058db0bb977adb58e710df4a62f2bbdbc1ca561a 100644 (file)
@@ -1,21 +1,20 @@
 ; Test to make sure that the 'private' is used correctly.
 ;
-; RUN: llc < %s -march=mips > %t
-; RUN: grep \\\$foo: %t
-; RUN: grep call.*\\\$foo %t
-; RUN: grep \\\$baz: %t
-; RUN: grep lw.*\\\$baz %t
-
-declare void @foo()
+; RUN: llc -march=mips < %s | FileCheck %s
 
 define private void @foo() {
-        ret void
+; CHECK-LABEL: foo:
+  ret void
 }
 
-@baz = private global i32 4;
+@baz = private global i32 4
 
 define i32 @bar() {
-        call void @foo()
-       %1 = load i32* @baz, align 4
-        ret i32 %1
+; CHECK-LABEL: bar:
+; CHECK: call16($foo)
+; CHECK: lw $[[R0:[0-9]+]], %got($baz)($
+; CHECK: lw ${{[0-9]+}}, %lo($baz)($[[R0]])
+  call void @foo()
+  %1 = load i32* @baz, align 4
+  ret i32 %1
 }