llvm-6502/test/CodeGen/X86/x86-64-mem.ll

39 lines
1.2 KiB
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | llc -mtriple=x86_64-apple-darwin -o %t1 -f
; RUN: grep GOTPCREL %t1 | count 4
; RUN: grep rip %t1 | count 6
; RUN: grep movq %t1 | count 6
; RUN: grep leaq %t1 | count 1
; RUN: llvm-upgrade < %s | llvm-as | \
; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=static -o %t2 -f
; RUN: grep rip %t2 | count 4
; RUN: grep movl %t2 | count 2
; RUN: grep movq %t2 | count 2
%ptr = external global int*
%src = external global [0 x int]
%dst = external global [0 x int]
%lptr = internal global int* null
%ldst = internal global [500 x int] zeroinitializer, align 32
%lsrc = internal global [500 x int] zeroinitializer, align 32
%bsrc = internal global [500000 x int] zeroinitializer, align 32
%bdst = internal global [500000 x int] zeroinitializer, align 32
void %test1() {
%tmp = load int* getelementptr ([0 x int]* %src, int 0, int 0)
store int %tmp, int* getelementptr ([0 x int]* %dst, int 0, int 0)
ret void
}
void %test2() {
store int* getelementptr ([0 x int]* %dst, int 0, int 0), int** %ptr
ret void
}
void %test3() {
store int* getelementptr ([500 x int]* %ldst, int 0, int 0), int** %lptr
br label %return
return:
ret void
}