4517e0955a326038910a6b4658d3e4de3c0fc3bd
[oota-llvm.git] / test / CodeGen / X86 / test-pic-5.ll
1 ; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic &&
2 ; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep _GLOBAL_OFFSET_TABLE_ &&
3 ; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep piclabel | wc -l | grep 3 &&
4 ; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep PLT | wc -l | grep 1
5
6 %ptr = external global i32* 
7
8 define void %foo() {
9 entry:
10     %ptr = malloc i32, i32 10
11     ret void
12 }
13