Browse Source
opcodes/ * arm-dis.c (print_insn): init vars moved into private_data structure. binutils/testsuite/ * binutils-all/arm/simple.s: Demo issue with objdump with multiple input files * binutils-all/arm/objdump.exp: added new ARM test case codebinutils-2_22-branch
5 changed files with 94 additions and 18 deletions
@ -0,0 +1,35 @@ |
|||
.cpu arm7tdmi-s |
|||
.fpu softvfp |
|||
.file "y.c" |
|||
.bss |
|||
.align 2 |
|||
l: |
|||
.space 4 |
|||
.text |
|||
.align 2 |
|||
.global f1 |
|||
.type f1, %function |
|||
f1: |
|||
str fp, [sp, #-4]! |
|||
add fp, sp, #0 |
|||
sub sp, sp, #12 |
|||
str r0, [fp, #-8] |
|||
add sp, fp, #0 |
|||
ldmfd sp!, {fp} |
|||
bx lr |
|||
.align 2 |
|||
.word l |
|||
.size f1, .-f1 |
|||
.align 2 |
|||
.global main |
|||
.type main, %function |
|||
main: |
|||
stmfd sp!, {fp, lr} |
|||
add fp, sp, #4 |
|||
bx lr |
|||
.align 2 |
|||
.word 1717986919 |
|||
.word -1840700269 |
|||
.word l |
|||
.size main, .-main |
|||
.ident "GCC: (Sourcery G++ 2011.03) 4.5.1" |
|||
Loading…
Reference in new issue