brintos

brintos / llvm-project-archived public Read only

0
0
Text · 471 B · 9e972a7 Raw
19 lines · plain
1// REQUIRES: arm2// RUN: llvm-mc -filetype=obj -triple=thumbv7-windows %s -o %t.obj3// RUN: lld-link -entry:main -subsystem:console %t.obj -out:%t.exe -debug -pdb:%t.pdb -verbose 2>&1 | FileCheck %s --check-prefix=VERBOSE4 5// VERBOSE: Added 1 thunks with margin {{.*}} in {{.*}} passes6 7    .syntax unified8    .globl main9    .globl func110    .text11main:12    bne func113    bx lr14    .section .text$a, "xr"15    .space 0x10000016    .section .text$b, "xr"17func1:18    bx lr19