mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
5a846f7102
Summary: In order to pass the tests, this required marking R_MIPS_16 relocations as needing to point to the symbol and not the section. Reviewers: vkalintiris, dsanders Subscribers: dsanders, llvm-commits Differential Revision: http://reviews.llvm.org/D17200 llvm-svn: 260896
42 lines
1.1 KiB
ArmAsm
42 lines
1.1 KiB
ArmAsm
# RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 | \
|
|
# RUN: FileCheck %s -check-prefix=CHECK-ASM
|
|
#
|
|
# RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 -filetype=obj -o - | \
|
|
# RUN: llvm-readobj -sections -section-data -section-relocations - | \
|
|
# RUN: FileCheck %s -check-prefix=CHECK-OBJ
|
|
|
|
# CHECK-ASM: .4byte 3735929054
|
|
# CHECK-ASM: .8byte -2401050962867405073
|
|
# CHECK-ASM: .2byte 49374
|
|
# CHECK-ASM: .4byte label
|
|
# CHECK-ASM: .8byte label
|
|
# CHECK-ASM: .2byte label
|
|
|
|
# Checking if the data and reloations were correctly emitted
|
|
# CHECK-OBJ: Section {
|
|
# CHECK-OBJ: Name: .data
|
|
# CHECK-OBJ: SectionData (
|
|
# CHECK-OBJ: 0000: DEADC0DE DEADC0DE DEADBEEF C0DE0000
|
|
# CHECK-OBJ: 0010: 00000000 00000000
|
|
# CHECK-OBJ: )
|
|
# CHECK-OBJ: }
|
|
|
|
# CHECK-OBJ: Section {
|
|
# CHECK-OBJ: Name: .rel.data
|
|
# CHECK-OBJ: Relocations [
|
|
# CHECK-OBJ: 0xE R_MIPS_32 .data 0x0
|
|
# CHECK-OBJ: 0x12 R_MIPS_64 .data 0x0
|
|
# CHECK-OBJ: 0x1A R_MIPS_16 .data 0x0
|
|
# CHECK-OBJ: ]
|
|
# CHECK-OBJ: }
|
|
|
|
.data
|
|
label:
|
|
.word 0xdeadc0de
|
|
.dword 0xdeadc0dedeadbeef
|
|
.hword 0xc0de
|
|
|
|
.word label
|
|
.dword label
|
|
.hword label
|