mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
f89da7210b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179361 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
384 B
LLVM
14 lines
384 B
LLVM
; RUN: llc %s -mtriple=armv7-linux-gnueabi -relocation-model=pic \
|
|
; RUN: -filetype=obj -o - | llvm-readobj -r | FileCheck %s
|
|
|
|
|
|
@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @f }]
|
|
|
|
define void @f() {
|
|
ret void
|
|
}
|
|
|
|
; Check for a relocation of type R_ARM_TARGET1.
|
|
; CHECK: Relocations [
|
|
; CHECK: 0x{{[0-9,A-F]+}} R_ARM_TARGET1
|