Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame^] | 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 | |