summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/hidden-vis-2.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2016-06-23 20:37:49 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2016-06-23 20:37:49 +0000
commit205ddae3d3c924a53591bfbfd5be5d01e3058e5c (patch)
treedd8c0bf8fce29df0e65fcf7a04053f007f151ff8 /test/CodeGen/PowerPC/hidden-vis-2.ll
parentdce5fb2295d1e5611d77f35397c4becbd13481a7 (diff)
Convert test to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273609 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/hidden-vis-2.ll')
-rw-r--r--test/CodeGen/PowerPC/hidden-vis-2.ll21
1 files changed, 14 insertions, 7 deletions
diff --git a/test/CodeGen/PowerPC/hidden-vis-2.ll b/test/CodeGen/PowerPC/hidden-vis-2.ll
index 3eb9dbd21ad..4ef0f708b4f 100644
--- a/test/CodeGen/PowerPC/hidden-vis-2.ll
+++ b/test/CodeGen/PowerPC/hidden-vis-2.ll
@@ -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
}