[lld] r261617 - [ELF][MIPS] Rename test case. NFC
Simon Atanasyan via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 23 00:34:19 PST 2016
Author: atanasyan
Date: Tue Feb 23 02:34:18 2016
New Revision: 261617
URL: http://llvm.org/viewvc/llvm-project?rev=261617&view=rev
Log:
[ELF][MIPS] Rename test case. NFC
Added:
lld/trunk/test/ELF/mips-32.s
- copied, changed from r261616, lld/trunk/test/ELF/mips-relocs.s
Removed:
lld/trunk/test/ELF/mips-relocs.s
Copied: lld/trunk/test/ELF/mips-32.s (from r261616, lld/trunk/test/ELF/mips-relocs.s)
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/mips-32.s?p2=lld/trunk/test/ELF/mips-32.s&p1=lld/trunk/test/ELF/mips-relocs.s&r1=261616&r2=261617&rev=261617&view=diff
==============================================================================
(empty)
Removed: lld/trunk/test/ELF/mips-relocs.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/mips-relocs.s?rev=261616&view=auto
==============================================================================
--- lld/trunk/test/ELF/mips-relocs.s (original)
+++ lld/trunk/test/ELF/mips-relocs.s (removed)
@@ -1,56 +0,0 @@
-# Check R_MIPS_32 relocation calculation.
-
-# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t-be.o
-# RUN: ld.lld -shared %t-be.o -o %t-be.so
-# RUN: llvm-objdump -t -s %t-be.so \
-# RUN: | FileCheck -check-prefix=SYM -check-prefix=BE %s
-# RUN: llvm-readobj -r -dynamic-table %t-be.so | FileCheck -check-prefix=REL %s
-
-# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s -o %t-el.o
-# RUN: ld.lld -shared %t-el.o -o %t-el.so
-# RUN: llvm-objdump -t -s %t-el.so \
-# RUN: | FileCheck -check-prefix=SYM -check-prefix=EL %s
-# RUN: llvm-readobj -r -dynamic-table %t-el.so | FileCheck -check-prefix=REL %s
-
-# REQUIRES: mips
-
- .globl __start
-__start:
- nop
-
- .data
- .type v1, at object
- .size v1,4
-v1:
- .word 0
-
- .globl v2
- .type v2, at object
- .size v2,8
-v2:
- .word v2+4 # R_MIPS_32 target v2 addend 4
- .word v1 # R_MIPS_32 target v1 addend 0
-
-# BE: Contents of section .data:
-# BE-NEXT: 30000 00000000 00030008 00030000
-# ^-- v2+4 ^-- v1
-
-# EL: Contents of section .data:
-# EL-NEXT: 30000 00000000 08000300 00000300
-# ^-- v2+4 ^-- v1
-
-# SYM: SYMBOL TABLE:
-# SYM: 00030000 l .data 00000004 v1
-# SYM: 00030004 g .data 00000008 v2
-
-# REL: Relocations [
-# REL-NEXT: Section (7) .rel.dyn {
-# REL-NEXT: 0x30004 R_MIPS_REL32 v2 0x0
-# REL-NEXT: 0x30008 R_MIPS_REL32 - 0x0
-# REL-NEXT: }
-# REL-NEXT: ]
-
-# REL: DynamicSection [
-# REL: Tag Type Name/Value
-# REL: 0x00000012 RELSZ 16 (bytes)
-# REL: 0x00000013 RELENT 8 (bytes)
More information about the llvm-commits
mailing list