2011-12-22 22:36:43 +01:00
|
|
|
@@ test st_value bit 0 of thumb function
|
2013-06-11 01:20:58 +02:00
|
|
|
@ RUN: llvm-mc %s -triple=armv4t-freebsd-eabi -filetype=obj -o - | \
|
2013-04-12 06:06:46 +02:00
|
|
|
@ RUN: llvm-readobj -r | FileCheck %s
|
2011-12-22 22:36:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
.syntax unified
|
|
|
|
.text
|
|
|
|
.align 2
|
|
|
|
.type f,%function
|
|
|
|
.code 16
|
|
|
|
.thumb_func
|
|
|
|
f:
|
|
|
|
push {r7, lr}
|
|
|
|
mov r7, sp
|
|
|
|
bl g
|
|
|
|
pop {r7, pc}
|
|
|
|
|
2014-04-11 21:18:01 +02:00
|
|
|
.section .data.rel.local,"aw",%progbits
|
|
|
|
ptr:
|
|
|
|
.long f
|
|
|
|
|
|
|
|
|
2011-12-22 22:36:43 +01:00
|
|
|
@@ make sure an R_ARM_THM_CALL relocation is generated for the call to g
|
2013-04-12 06:06:46 +02:00
|
|
|
@CHECK: Relocations [
|
2015-04-15 17:59:37 +02:00
|
|
|
@CHECK-NEXT: Section {{.*}} .rel.text {
|
2013-04-12 06:06:46 +02:00
|
|
|
@CHECK-NEXT: 0x4 R_ARM_THM_CALL g 0x0
|
|
|
|
@CHECK-NEXT: }
|
2014-04-11 21:18:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
@@ make sure the relocation is with f. That is one way to make sure it includes
|
|
|
|
@@ the thumb bit.
|
2015-04-29 15:55:07 +02:00
|
|
|
@CHECK-NEXT: Section ({{.*}}) .rel.data.rel.local {
|
2014-04-11 21:18:01 +02:00
|
|
|
@CHECK-NEXT: 0x0 R_ARM_ABS32 f 0x0
|
|
|
|
@CHECK-NEXT: }
|
2013-04-12 06:06:46 +02:00
|
|
|
@CHECK-NEXT: ]
|