GNU Binutils with patches for OS216
Revision | 2219f2b3715ddbee477ded32d5b2af06737f3464 (tree) |
---|---|
Time | 2006-12-02 01:42:27 |
Author | nobody <> |
Commiter | nobody <> |
This commit was manufactured by cvs2svn to create branch 'binutils-csl-
2_17-branch'.
Cherrypick from master 2006-12-01 16:42:26 UTC Paul Brook <paul@codesourcery.com> '2006-12-01 Paul Brook <paul@codesourcery.com>':
@@ -0,0 +1,14 @@ | ||
1 | +#objdump: -sr | |
2 | +# This test is only valid on ELF based ports. | |
3 | +#not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix* | |
4 | + | |
5 | +.*: file format.* | |
6 | + | |
7 | +RELOCATION RECORDS FOR \[.text\]: | |
8 | +OFFSET TYPE VALUE | |
9 | +00000004 R_ARM_REL32 b | |
10 | + | |
11 | +Contents of section .text: | |
12 | + 0000 00000000 (00000004|04000000) 00000000 00000000 .* | |
13 | +# Ignore .ARM.attributes section | |
14 | +#... |
@@ -0,0 +1,11 @@ | ||
1 | +@ Check that PC-relative relocs against local function symbols are | |
2 | +@ generated correctly. | |
3 | +.text | |
4 | +.thumb | |
5 | +a: | |
6 | +.word 0 | |
7 | +.word b - a | |
8 | +.word 0 | |
9 | +.word 0 | |
10 | +.type b, %function | |
11 | +b: |