diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-02-16 03:25:55 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-02-16 03:25:55 +0000 |
commit | 908159b46ae118d36fccbc1d5145dcedfc3d4185 (patch) | |
tree | 2bcfa35cdee3a066ce28656022bc1e7b506c6e5e /test/MC/ELF | |
parent | 169e1552e748348b033fb6817df4bffc345e5583 (diff) | |
download | external_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.zip external_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.tar.gz external_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.tar.bz2 |
Gas is very inconsistent about when a relaxation/relocation is needed. Do
the right thing and stop trying to copy it. Fixes PR8944.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF')
-rw-r--r-- | test/MC/ELF/relax.s | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/test/MC/ELF/relax.s b/test/MC/ELF/relax.s index d584c7c..2c0e285 100644 --- a/test/MC/ELF/relax.s +++ b/test/MC/ELF/relax.s @@ -1,10 +1,6 @@ // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s -// Test that we do a relaxation for foo but not for bar or zed. Relaxing foo is -// probably not necessary, but matches what gnu as does. - -// Also test that the relaxation done for foo uses the symbol, not section and -// offset. +// Test that we do not relax these. bar: .globl foo @@ -20,22 +16,12 @@ foo: // CHECK-NEXT: ('sh_flags', 0x00000006) // CHECK-NEXT: ('sh_addr', 0x00000000) // CHECK-NEXT: ('sh_offset', 0x00000040) -// CHECK-NEXT: ('sh_size', 0x00000009) +// CHECK-NEXT: ('sh_size', 0x00000006) // CHECK-NEXT: ('sh_link', 0x00000000) // CHECK-NEXT: ('sh_info', 0x00000000) // CHECK-NEXT: ('sh_addralign', 0x00000004) // CHECK-NEXT: ('sh_entsize', 0x00000000) -// CHECK-NEXT: ('_section_data', 'ebfee900 000000eb f7') +// CHECK-NEXT: ('_section_data', 'ebfeebfc ebfa') // CHECK: # Symbol 0x00000006 // CHECK-NEXT: (('st_name', 0x00000005) # 'foo' - -// CHECK: .rela.text -// CHECK: ('_relocations', [ -// CHECK-NEXT: Relocation 0x00000000 -// CHECK-NEXT: (('r_offset', 0x00000003) -// CHECK-NEXT: ('r_sym', 0x00000006) -// CHECK-NEXT: ('r_type', 0x00000002) -// CHECK-NEXT: ('r_addend', 0xfffffffc) -// CHECK-NEXT: ), -// CHECK-NEXT: ]) |