diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-06 15:30:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-11-06 15:30:45 +0000 |
commit | 889d7bb4cbc8f1d7807e522bb45d0084b118c27e (patch) | |
tree | f9df98c519307e85ee4bda26bc4d4590e88538e8 /llvm/test | |
parent | 1954c614d4049bedaae00905a2c22ee4f671b946 (diff) | |
download | bcm5719-llvm-889d7bb4cbc8f1d7807e522bb45d0084b118c27e.tar.gz bcm5719-llvm-889d7bb4cbc8f1d7807e522bb45d0084b118c27e.zip |
Bring r252305 back with a test fix.
We now create the .eh_frame section early, just like every other special
section.
This means that the special flags are visible in code that explicitly
asks for ".eh_frame".
llvm-svn: 252313
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/eh_frame.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/eh_frame.ll b/llvm/test/CodeGen/X86/eh_frame.ll index 3b792b235cb..0472e773df5 100644 --- a/llvm/test/CodeGen/X86/eh_frame.ll +++ b/llvm/test/CodeGen/X86/eh_frame.ll @@ -7,8 +7,8 @@ @bar1 = constant i8* bitcast (i32* @foo to i8*), section "my_bar1", align 8 -; STATIC: .section .eh_frame,"a",@progbits +; STATIC: .section .eh_frame,"a",@unwind ; STATIC: .section my_bar1,"a",@progbits -; PIC: .section .eh_frame,"a",@progbits +; PIC: .section .eh_frame,"a",@unwind ; PIC: .section my_bar1,"aw",@progbits |