diff options
author | Nick Clifton <nickc@redhat.com> | 2011-04-11 15:12:29 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-04-11 15:12:29 +0000 |
commit | 0389ec1ea01d00241e4408e926e21dbcdcb8bfff (patch) | |
tree | 0a5f7583836dc27d88f4d9b9bea5f8ce5e06a0dc /binutils | |
parent | 7782b183cbbb7370b0c0f0c8b0248661ed001d40 (diff) | |
download | ppe42-binutils-0389ec1ea01d00241e4408e926e21dbcdcb8bfff.tar.gz ppe42-binutils-0389ec1ea01d00241e4408e926e21dbcdcb8bfff.zip |
* binutils-all/arm/simple.s: Fix assembly problems for COFF based
ARM toolchaisn by removing .type and .size directives.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/arm/simple.s | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 2d2981f82c..9537660af5 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-04-11 Nick Clifton <nickc@redhat.com> + + * binutils-all/arm/simple.s: Fix assembly problems for COFF based + ARM toolchaisn by removing .type and .size directives. + 2011-04-07 Paul Carroll<pcarroll@codesourcery.com> * binutils-all/arm/simple.s: Demo issue with objdump with diff --git a/binutils/testsuite/binutils-all/arm/simple.s b/binutils/testsuite/binutils-all/arm/simple.s index a486023564..df8dd2ab05 100644 --- a/binutils/testsuite/binutils-all/arm/simple.s +++ b/binutils/testsuite/binutils-all/arm/simple.s @@ -8,7 +8,7 @@ l: .text .align 2 .global f1 - .type f1, %function + f1: str fp, [sp, #-4]! add fp, sp, #0 @@ -19,10 +19,10 @@ f1: 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 @@ -31,5 +31,5 @@ main: .word 1717986919 .word -1840700269 .word l - .size main, .-main + .ident "GCC: (Sourcery G++ 2011.03) 4.5.1" |