Rafael Espindola | d846e3f | 2011-06-07 23:26:45 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -mtriple x86_64-unknown-linux-gnu | FileCheck -check-prefix=STATIC %s |
| 2 | ; RUN: llc < %s -mtriple x86_64-unknown-linux-gnu -relocation-model=pic | FileCheck -check-prefix=PIC %s |
Rafael Espindola | 10c3e12 | 2011-05-24 02:50:20 +0000 | [diff] [blame] | 3 | |
| 4 | @__FRAME_END__ = constant [1 x i32] zeroinitializer, section ".eh_frame" |
| 5 | |
Rafael Espindola | d846e3f | 2011-06-07 23:26:45 +0000 | [diff] [blame] | 6 | @foo = external global i32 |
| 7 | @bar1 = constant i8* bitcast (i32* @foo to i8*), section "my_bar1", align 8 |
| 8 | |
| 9 | |
| 10 | ; STATIC: .section .eh_frame,"a",@progbits |
| 11 | ; STATIC: .section my_bar1,"a",@progbits |
| 12 | |
| 13 | ; PIC: .section .eh_frame,"a",@progbits |
| 14 | ; PIC: .section my_bar1,"aw",@progbits |