blob: 202ac9a0c2b2d13ffa55023f80603f8fa10a685e [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
Reid Spencere3ff5ad2007-01-26 08:25:06 +00006@ptr = external global i32*
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007
Reid Spencere3ff5ad2007-01-26 08:25:06 +00008define void @foo() {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00009entry:
10 %ptr = malloc i32, i32 10
11 ret void
12}
13