2007-04-15 22:20:47 +00:00
|
|
|
; RUN: llvm-as < %s | \
|
2007-04-16 17:36:08 +00:00
|
|
|
; RUN: llc -mtriple=i686-pc-linux-gnu -relocation-model=pic -o %t -f
|
2007-04-15 22:20:47 +00:00
|
|
|
; RUN: grep _GLOBAL_OFFSET_TABLE_ %t
|
2007-08-15 13:36:28 +00:00
|
|
|
; RUN: grep piclabel %t | count 3
|
|
|
|
; RUN: grep GOT %t | count 3
|
2007-08-15 13:45:35 +00:00
|
|
|
; RUN: not grep GOTOFF %t
|
2007-01-12 19:20:47 +00:00
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
@ptr = external global i32*
|
|
|
|
@dst = external global i32
|
|
|
|
@src = external global i32
|
2007-01-12 19:20:47 +00:00
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
define void @foo() {
|
2007-01-12 19:20:47 +00:00
|
|
|
entry:
|
2007-01-26 08:25:06 +00:00
|
|
|
store i32* @dst, i32** @ptr
|
|
|
|
%tmp.s = load i32* @src
|
|
|
|
store i32 %tmp.s, i32* @dst
|
2007-01-12 19:20:47 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|