Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

17 lines
378 B
ArmAsm

; RUN: llvm-mc -filetype=obj -triple=avr %s -mattr=avr6 | llvm-objdump -r - | FileCheck %s
; Checks that a global symbol with the address of another
; symbol generates a R_AVR_16_PM relocation, as the symbol
; will always be in program memory.
; CHECK: RELOCATION RECORDS FOR [.rela.text]:
; CHECK-NEXT: 00000002 R_AVR_16_PM .text
foo:
ret
.globl ptr
ptr:
.short gs(foo)