aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/MachO/ARM/llvm-objdump-macho.s
blob: c8aec932ad6c97baa0d09282eafc8f0708fc9e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@ RUN: llvm-mc -triple=thumbv7-apple-ios -filetype=obj -o - < %s | llvm-objdump -d -macho -triple=thumbv7-apple-ios - | FileCheck %s
.thumb
.thumb_func _fib
_fib:
	push	{r7, lr}
	pop	{r7, pc}
.thumb_func _main
_main:
	push	{r7, lr}
        pop	{r7, pc}
	nop
# CHECK: _fib:
# CHECK:        0:	80 b5                                        	push	{r7, lr}
# CHECK:        2:	80 bd                                        	pop	{r7, pc}
# CHECK: _main:
# CHECK:        4:	80 b5                                        	push	{r7, lr}
# CHECK:        6:	80 bd                                        	pop	{r7, pc}
# CHECK:        8:	00 bf                                        	nop
# We are checking that second function is fully disassembled.
# rdar://11426465