diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2015-04-10 21:19:01 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2015-04-10 21:19:01 +0000 |
commit | 1c1b4366af8924de26473de9da00a093feba19d5 (patch) | |
tree | 0e6e4ea7b4de63ec6bd48f134563dcb59edd594e | |
parent | b6c5914308132acc9289335ed6a92b31f9484631 (diff) | |
download | bcm5719-llvm-1c1b4366af8924de26473de9da00a093feba19d5.tar.gz bcm5719-llvm-1c1b4366af8924de26473de9da00a093feba19d5.zip |
[Mips] Fix broken test case
llvm-svn: 234639
-rw-r--r-- | lld/test/elf/Mips/rel-eh-03.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lld/test/elf/Mips/rel-eh-03.test b/lld/test/elf/Mips/rel-eh-03.test index 6a7a5fffe4c..019cc7924f4 100644 --- a/lld/test/elf/Mips/rel-eh-03.test +++ b/lld/test/elf/Mips/rel-eh-03.test @@ -3,20 +3,20 @@ # RUN: yaml2obj -format=elf -docnum 1 %s > %t1.o # RUN: yaml2obj -format=elf -docnum 2 %s > %t2.o # RUN: lld -flavor gnu -target mipsel -e T0 \ -# RUN: -pcrel-eh-reloc -o %t.exe %t1.o %t2.o %t.so +# RUN: -pcrel-eh-reloc -o %t.exe %t1.o %t2.o # RUN: llvm-objdump -s -t %t.exe | FileCheck -check-prefix=RAW %s # RAW: Contents of section .gnu_extab: -# RAW-NEXT: 400158 00e7ffff ff000000 a01e0000 00000000 -# ^ 0x400140 + 0 - 0x400159 = 0xffffffe7 -# ^ 0x402000 + 0 - 0x400160 = 0x1ea0 +# RAW-NEXT: 400148 00e7ffff ff000000 b01e0000 00000000 +# ^ 0x400130 + 0 - 0x400149 = 0xffffffe7 +# ^ 0x402000 + 0 - 0x400150 = 0x1eb0 # E1 GOT entry = 0xffff8020 = -32736 ^ # RAW: Contents of section .got: # RAW-NEXT: 401000 00000000 00000080 # RAW: SYMBOL TABLE: # RAW: 00402000 l .data 00000004 L1 -# RAW: 00400140 g F .text 00000004 T1 +# RAW: 00400130 g F .text 00000004 T1 # t1.o --- |