mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
f3eb3bba16
- Fixed :upper16: fix up routine. It should be shifting down the top 16 bits first. - Added support for Thumb2 :lower16: and :upper16: fix up. - Added :upper16: and :lower16: relocation support to mach-o object writer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123424 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
565 B
ArmAsm
21 lines
565 B
ArmAsm
@ RUN: llvm-mc %s -triple armv7-apple-darwin | FileCheck %s
|
|
@ RUN: llvm-mc %s -triple armv7-apple-darwin | FileCheck %s
|
|
|
|
_t:
|
|
movw r0, :lower16:(L_foo$non_lazy_ptr - (L1 + 8))
|
|
movt r0, :upper16:(L_foo$non_lazy_ptr - (L1 + 8))
|
|
L1:
|
|
|
|
@ CHECK: movw r0, :lower16:(L_foo$non_lazy_ptr-(L1+8))
|
|
@ CHECK: movt r0, :upper16:(L_foo$non_lazy_ptr-(L1+8))
|
|
|
|
.comm _foo,4,2
|
|
|
|
.section __DATA,__nl_symbol_ptr,non_lazy_symbol_pointers
|
|
.align 2
|
|
L_foo$non_lazy_ptr:
|
|
.indirect_symbol _foo
|
|
.long 0
|
|
|
|
.subsections_via_symbols
|