mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
303a00ec48
were falling into the cases for 24-bit branch kinds which are not 24-bit branches. The routine is to return false for fixups are expected to always be resolvable at assembly time. Which these three fixups are as they have limited displacement and are for local references within a function. rdar://15586725 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197282 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
289 B
ArmAsm
10 lines
289 B
ArmAsm
@ RUN: not llvm-mc -n -triple armv7-apple-darwin10 %s -filetype=obj -o - 2> %t.err > %t
|
|
@ RUN: FileCheck --check-prefix=CHECK-ERROR < %t.err %s
|
|
@ rdar://15586725
|
|
.text
|
|
ldr r3, L___fcommon
|
|
.section myseg, mysect
|
|
L___fcommon:
|
|
.word 0
|
|
@ CHECK-ERROR: unsupported relocation on symbol
|