blob: 4517e0955a326038910a6b4658d3e4de3c0fc3bd [file] [log] [blame]
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001; 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
8define void %foo() {
9entry:
10 %ptr = malloc i32, i32 10
11 ret void
12}
13