2009-09-11 18:36:27 +00:00
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=static | \
|
2007-05-04 00:29:34 +00:00
|
|
|
; RUN: not grep {L_G\$non_lazy_ptr}
|
2009-09-11 18:36:27 +00:00
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | \
|
2007-08-15 13:36:28 +00:00
|
|
|
; RUN: grep {L_G\$non_lazy_ptr} | count 2
|
2009-09-11 18:36:27 +00:00
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | \
|
2007-08-15 13:36:28 +00:00
|
|
|
; RUN: grep {ldr.*pc} | count 1
|
2009-09-11 18:36:27 +00:00
|
|
|
; RUN: llc < %s -mtriple=arm-linux-gnueabi -relocation-model=pic | \
|
2007-08-15 13:36:28 +00:00
|
|
|
; RUN: grep {GOT} | count 1
|
2007-01-19 09:20:23 +00:00
|
|
|
|
2007-05-04 00:29:34 +00:00
|
|
|
@G = external global i32
|
2007-01-19 09:20:23 +00:00
|
|
|
|
2007-05-04 00:29:34 +00:00
|
|
|
define i32 @test1() {
|
|
|
|
%tmp = load i32* @G
|
|
|
|
ret i32 %tmp
|
2007-01-19 09:20:23 +00:00
|
|
|
}
|