blob: 50a26e2a451a3b13529d9c9b9025001d8fe91d71 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s | grep larl | count 3
Anton Korobeynikovbad769f2009-07-16 13:57:27 +00002
3target datalayout = "E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128"
Duncan Sandscdd4f8c2010-08-30 10:48:29 +00004target triple = "s390x-ibm-linux"
Anton Korobeynikovbad769f2009-07-16 13:57:27 +00005@bar = common global i64 0, align 8 ; <i64*> [#uses=3]
6
7define i64 @foo() nounwind readonly {
8entry:
9 %tmp = load i64* @bar ; <i64> [#uses=1]
10 ret i64 %tmp
11}
12
13define i64* @foo2() nounwind readnone {
14entry:
15 ret i64* @bar
16}
17
18define i64* @foo3(i64 %idx) nounwind readnone {
19entry:
20 %add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
21 %add.ptr2 = getelementptr i64* @bar, i64 %add.ptr.sum ; <i64*> [#uses=1]
22 ret i64* %add.ptr2
23}