diff options
author | Jack Carter <jcarter@mips.com> | 2013-02-19 22:29:00 +0000 |
---|---|---|
committer | Jack Carter <jcarter@mips.com> | 2013-02-19 22:29:00 +0000 |
commit | 5cdeca8b1d726790fe9687bc4a4d615d299bc151 (patch) | |
tree | 9c917844f6f3325f2e24fbee097fb966b523e124 /test/MC | |
parent | bcff7b77348e299d25e7ada9ea5bffb80aab55b2 (diff) | |
download | external_llvm-5cdeca8b1d726790fe9687bc4a4d615d299bc151.zip external_llvm-5cdeca8b1d726790fe9687bc4a4d615d299bc151.tar.gz external_llvm-5cdeca8b1d726790fe9687bc4a4d615d299bc151.tar.bz2 |
ELF symbol table field st_other support,
excluding visibility bits.
Mips (o32 abi) specific e_header setting.
EF_MIPS_ABI_O32 needs to be set in the
ELF header flags for o32 abi output.
Contributer: Reed Kotler
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r-- | test/MC/Mips/elf_eflags.ll | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/MC/Mips/elf_eflags.ll b/test/MC/Mips/elf_eflags.ll index 380c2b1..315cb81 100644 --- a/test/MC/Mips/elf_eflags.ll +++ b/test/MC/Mips/elf_eflags.ll @@ -28,22 +28,22 @@ ; RUN: llc -filetype=obj -mtriple mipsel-unknown-linux -mcpu=mips32r2 -mattr=+mips16 -relocation-model=pic %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-LE32R2-MIPS16 %s ; 32(R1) bit with NO_REORDER and static -; CHECK-BE32: ('e_flags', 0x50000001) +; CHECK-BE32: ('e_flags', 0x50001001) ; ; 32(R1) bit with NO_REORDER and PIC -; CHECK-BE32_PIC: ('e_flags', 0x50000003) +; CHECK-BE32_PIC: ('e_flags', 0x50001003) ; ; 32R2 bit with NO_REORDER and static -; CHECK-BE32R2: ('e_flags', 0x70000001) +; CHECK-BE32R2: ('e_flags', 0x70001001) ; ; 32R2 bit with NO_REORDER and PIC -; CHECK-BE32R2_PIC: ('e_flags', 0x70000003) +; CHECK-BE32R2_PIC: ('e_flags', 0x70001003) ; ; 32R2 bit MICROMIPS with NO_REORDER and static -; CHECK-BE32R2-MICROMIPS: ('e_flags', 0x72000001) +; CHECK-BE32R2-MICROMIPS: ('e_flags', 0x72001001) ; ; 32R2 bit MICROMIPS with NO_REORDER and PIC -;CHECK-BE32R2-MICROMIPS_PIC: ('e_flags', 0x72000003) +;CHECK-BE32R2-MICROMIPS_PIC: ('e_flags', 0x72001003) ; ; 64(R1) bit with NO_REORDER and static ; CHECK-BE64: ('e_flags', 0x60000001) @@ -58,7 +58,7 @@ ; CHECK-BE64R2_PIC: ('e_flags', 0x80000003) ; ; 32R2 bit MIPS16 with PIC -; CHECK-LE32R2-MIPS16: ('e_flags', 0x74000002) +; CHECK-LE32R2-MIPS16: ('e_flags', 0x74001002) define i32 @main() nounwind { entry: |