summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/test-pic-5.ll
blob: 202ac9a0c2b2d13ffa55023f80603f8fa10a685e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic &&
; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep _GLOBAL_OFFSET_TABLE_ &&
; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep piclabel | wc -l | grep 3 &&
; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep PLT | wc -l | grep 1

@ptr = external global i32* 

define void @foo() {
entry:
    %ptr = malloc i32, i32 10
    ret void
}