]> granicus.if.org Git - llvm/commitdiff
Convert test to FileCheck.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 23 Jun 2016 20:37:49 +0000 (20:37 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 23 Jun 2016 20:37:49 +0000 (20:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273609 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/PowerPC/hidden-vis-2.ll

index 3eb9dbd21ade7f1ad91d2720f26835d1b541fa95..4ef0f708b4f6fdb7383c8664b9e1ff4abf6dd925 100644 (file)
@@ -1,12 +1,19 @@
-; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6
+; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | FileCheck %s
 
-@x = external hidden global i32                ; <i32*> [#uses=1]
-@y = extern_weak hidden global i32     ; <i32*> [#uses=1]
+; CHECK: lis r2, ha16(L_x$non_lazy_ptr)
+; CHECK: lis r3, ha16(L_y$non_lazy_ptr)
+; CHECK: lwz r2, lo16(L_x$non_lazy_ptr)(r2)
+; CHECK: lwz r3, lo16(L_y$non_lazy_ptr)(r3)
+; CHECK: L_x$non_lazy_ptr:
+; CHECK: L_y$non_lazy_ptr:
+
+@x = external hidden global i32
+@y = extern_weak hidden global i32
 
 define i32 @t() nounwind readonly {
 entry:
-       %0 = load i32, i32* @x, align 4         ; <i32> [#uses=1]
-       %1 = load i32, i32* @y, align 4         ; <i32> [#uses=1]
-       %2 = add i32 %1, %0             ; <i32> [#uses=1]
-       ret i32 %2
+        %0 = load i32, i32* @x, align 4
+        %1 = load i32, i32* @y, align 4
+        %2 = add i32 %1, %0
+        ret i32 %2
 }