zig/deps/lld/test/ELF/arm-blx-v4t.s

28 lines
680 B
ArmAsm
Raw Normal View History

2018-01-18 06:29:21 +08:00
// REQUIRES: arm
2019-02-08 06:07:18 +08:00
// RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=arm-none-linux-gnueabi %s -o %t
2018-08-05 05:47:16 +08:00
// RUN: ld.lld %t -o /dev/null 2>&1 | FileCheck %s
2018-01-18 06:29:21 +08:00
// On Arm v4t there is no blx instruction so all interworking must go via
// a thunk. At present we don't support v4t so we give a warning for unsupported
// features.
2019-02-08 06:07:18 +08:00
// CHECK: warning: lld uses blx instruction, no object with architecture supporting feature detected
2018-01-18 06:29:21 +08:00
.text
.syntax unified
.cpu arm7tdmi
.arm
.globl _start
.type _start,%function
.p2align 2
_start:
bl thumbfunc
bx lr
.thumb
.section .text.2, "ax", %progbits
.globl thumbfunc
.type thumbfunc,%function
thumbfunc:
bx lr