blob: 6850da3e6e60a674aa0d059bdb8a3e180d75e08d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.syntax unified
.weak bar
.section .far, "ax", %progbits
.global _start
.type _start, %function
_start:
bl bar
bleq bar
.thumb
.type foo, %function
.thumb_func
foo:
bl bar
movs r0, #0
bl bar
bx lr
|