Commit | Line | Data |
---|---|---|
d08ec383 PB |
1 | .syntax unified |
2 | .weak bar | |
3 | .section .far, "ax", %progbits | |
4 | .global _start | |
5 | .type _start, %function | |
6 | _start: | |
7 | bl bar | |
8 | bleq bar | |
9 | .thumb | |
10 | .type foo, %function | |
11 | .thumb_func | |
12 | foo: | |
13 | bl bar | |
14 | movs r0, #0 | |
15 | bl bar | |
16 | bx lr |