* ld-arm/arm-elf.exp (armeabitests): Restore thumb2-b-interwork.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arm / thumb2-bl.s
CommitLineData
e95de063
MS
1@ Test to ensure that a Thumb-2 BL works with an offset that is
2@ not permissable for Thumb-1.
3
4 .arch armv7
5 .global _start
6 .syntax unified
7
8@ We will place the section .text at 0x1000.
9
10 .text
11 .thumb_func
12
13_start:
14 bl bar
15
16@ We will place the section .foo at 0x1001000.
17
18 .section .foo, "xa"
19 .thumb_func
20
21bar:
22 bx lr
23
This page took 0.105318 seconds and 4 git commands to generate.