mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
906f69cf65
Relocs like PC32DBL require a right shift of the symbol value. There is no situation where dropping symbol value bits with the right shift is a good thing. Hence we now issue an error to detect such problems.
15 lines
197 B
ArmAsm
15 lines
197 B
ArmAsm
.machinemode zarch
|
|
.machine "z900"
|
|
.text
|
|
.align 8
|
|
.globl start
|
|
.type start, @function
|
|
start:
|
|
larl %r1, test
|
|
.globl test
|
|
.data
|
|
.align 4
|
|
.byte 23
|
|
test:
|
|
.zero 4
|