Adds command line support for Armv8.4-A, via the new command line option -march=armv8...
[deliverable/binutils-gdb.git] / gas / testsuite / gas / arm / pr21458.s
CommitLineData
52a86f84
NC
1.syntax unified
2.thumb
3.text
4.align 2
5.global __thumbFn
6.type __testFn, %function
7.thumb_func
8__thumbFn:
9 bx lr
10 nop
11
12.arm
13.global __armFn
14.type __armFn, %function
15__armFn:
16 bx lr
17
18.thumb
19.global __test_thumb
20.type __test_thumb, %function
21.thumb_func
22__test_thumb:
23 ADR R0,__thumbFn
24 BLX R0
25 ADR R2,__armFn
26 BLX R2
27
28.arm
29.global __test_arm
30.type __test_arm, %function
31__test_arm:
32 ADRL R4,__thumbFn
33 BLX R4
34 ADRL R6,__armFn
35 BLX R6
36 ADR r8, __thumbFn
37 blx r8
38 ADR r10, __armFn
39 blx r10
40 adrlo r12, __thumbFn
This page took 0.046589 seconds and 4 git commands to generate.