mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
7e2ce4c73e
Change relocation output so that relocation information follows individual instructions rather than clustering them at the end of packets. This change required shifting block of code but the actual change is in HexagonPrettyPrinter's PrintInst. Differential Revision: https://reviews.llvm.org/D46728 llvm-svn: 332283
16 lines
308 B
ArmAsm
16 lines
308 B
ArmAsm
# RUN: llvm-mc -filetype=obj -triple=hexagon %s | llvm-objdump -r -d - | FileCheck %s
|
|
{
|
|
call ##foo
|
|
memw(##a) = r0
|
|
}
|
|
#CHECK: { immext(#0)
|
|
#CHECK: : R_HEX_B32_PCREL_X foo
|
|
#CHECK: call
|
|
#CHECK: R_HEX_B22_PCREL_X foo
|
|
#CHECK: immext(#0)
|
|
#CHECK: R_HEX_32_6_X a
|
|
#CHECK: memw(##0) = r0 }
|
|
#CHECK: R_HEX_16_X a
|
|
|
|
|