llvm/test/CodeGen/AArch64/tailcall_misched_graph.ll: s/REQUIRE/REQUIRES/
[oota-llvm.git] / test / CodeGen / PowerPC / hidden-vis-2.ll
1 ; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6
2
3 @x = external hidden global i32         ; <i32*> [#uses=1]
4 @y = extern_weak hidden global i32      ; <i32*> [#uses=1]
5
6 define i32 @t() nounwind readonly {
7 entry:
8         %0 = load i32, i32* @x, align 4         ; <i32> [#uses=1]
9         %1 = load i32, i32* @y, align 4         ; <i32> [#uses=1]
10         %2 = add i32 %1, %0             ; <i32> [#uses=1]
11         ret i32 %2
12 }