summaryrefslogtreecommitdiffstats
path: root/binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-07-07 17:06:28 -0700
committerElliott Hughes <enh@google.com>2015-07-07 17:06:28 -0700
commite75a9625a658e75feee8e2e2b6d42fa03d47b26d (patch)
treed15bb9a196ea7b28219911d7c26c93585454ed1d /binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s
parent548e866f819455e730b5981cefed80dfb9c56033 (diff)
downloadtoolchain_binutils-e75a9625a658e75feee8e2e2b6d42fa03d47b26d.tar.gz
toolchain_binutils-e75a9625a658e75feee8e2e2b6d42fa03d47b26d.tar.bz2
toolchain_binutils-e75a9625a658e75feee8e2e2b6d42fa03d47b26d.zip
Remove binutils-2.24.
Change-Id: I26a47a29e4d16e75e21e9295504079a815c334c6
Diffstat (limited to 'binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s')
-rw-r--r--binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s87
1 files changed, 0 insertions, 87 deletions
diff --git a/binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s b/binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s
deleted file mode 100644
index b01146e2..00000000
--- a/binutils-2.24/gas/testsuite/gas/arm/branch-reloc.s
+++ /dev/null
@@ -1,87 +0,0 @@
-@ Check that non-local branches with and without mode switching
-@ produce the right relocations with appropriate in-place addends.
-
- .syntax unified
-
- .text
- .arm
- .global arm_glob_sym1
- .global arm_glob_sym2
- .global thumb_glob_sym1
- .global thumb_glob_sym2
- nop
- .type arm_glob_sym1, %function
-arm_glob_sym1:
- bl thumb_glob_sym1
- bl thumb_glob_sym2
- bl thumb_sym1
- bl arm_glob_sym1
- bl arm_glob_sym2
- bl arm_sym1
- blx thumb_glob_sym1
- blx thumb_glob_sym2
- blx thumb_sym1
- blx arm_glob_sym1
- blx arm_glob_sym2
- blx arm_sym1
- nop
- bx lr
-
- .type arm_sym1, %function
-arm_sym1:
- nop
- bx lr
-
- .thumb
- .thumb_func
- .type thumb_sym1, %function
-thumb_sym1:
- bx lr
-
- .type thumb_glob_sym1, %function
- .thumb_func
- .thumb
-thumb_glob_sym1:
- bx lr
-
- .section foo,"ax"
-
-@ Add some space to avoid confusing objdump output: as we are
-@ producing a relocatable file, objdump may match an address to
-@ the wrong symbol (as symbols in different sections may have the same
-@ address in the object file).
- .space 0x100
-
- .type thumb_glob_sym2, %function
- .thumb_func
- .thumb
-thumb_glob_sym2:
- bl arm_glob_sym1
- bl arm_glob_sym2
- bl arm_sym2
- bl thumb_glob_sym1
- bl thumb_glob_sym2
- bl thumb_sym2
- blx arm_glob_sym1
- blx arm_glob_sym2
- blx arm_sym2
- blx thumb_glob_sym1
- blx thumb_glob_sym2
- blx thumb_sym2
- nop
- bx lr
-
- .type thumb_sym2, %function
-thumb_sym2:
- nop
- bx lr
-
- .arm
- .type arm_sym2, %function
-arm_sym2:
- bx lr
-
- .global arm_glob_sym2
- .type arm_glob_sym2, %function
-arm_glob_sym2:
- bx lr