brintos

brintos / llvm-project-archived public Read only

0
0
Text · 714 B · 5cb1ee9 Raw
26 lines · plain
1; RUN: llc -O0 < %s -mtriple armv7-linux-gnueabi -o - \2; RUN:   | llvm-mc -triple armv7-linux-gnueabi -filetype=obj -o - \3; RUN:    | llvm-readobj -r - | FileCheck %s4 5target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"6target triple = "armv7--linux-gnueabihf"7 8define internal i32 @arm_fn() #1 {9  %1 = tail call i32 @thumb_fn()10  ret i32 %111}12 13define internal i32 @thumb_fn() #2 {14  %1 = tail call i32 @arm_fn()15  ret i32 %116}17 18attributes #1 = { "target-features"="-thumb-mode" }19attributes #2 = { "target-features"="+thumb-mode" }20 21; CHECK: Relocations [22; CHECK-NEXT: Section (3) .rel.text {23; CHECK-NEXT: 0x0 R_ARM_JUMP24 thumb_fn24; CHECK-NEXT: 0x4 R_ARM_THM_JUMP24 arm_fn25; CHECK-NEXT: }26