blob: e9e2c0a93a0d43b38d32aa08117ce74ba48e94d0 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6
Evan Chengae94e592008-12-05 01:06:39 +00002
3@x = external hidden global i32 ; <i32*> [#uses=1]
4@y = extern_weak hidden global i32 ; <i32*> [#uses=1]
5
6define i32 @t() nounwind readonly {
7entry:
8 %0 = load i32* @x, align 4 ; <i32> [#uses=1]
9 %1 = load i32* @y, align 4 ; <i32> [#uses=1]
10 %2 = add i32 %1, %0 ; <i32> [#uses=1]
11 ret i32 %2
12}