diff options
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-elfvsb/define.s | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 32a5dcd..8dc5269 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-11-09 Alan Modra <amodra@bigpond.net.au> + + * ld-elfvsb/define.s: Avoid use of @ in .type directive. + 2002-11-07 Hans-Peter Nilsson <hp@axis.com> * ld-cris/expdyn6.d, ld-cris/weakref2.d, ld-cris/expdyn7.d, diff --git a/ld/testsuite/ld-elfvsb/define.s b/ld/testsuite/ld-elfvsb/define.s index 66cf4c2..b38e3e0 100644 --- a/ld/testsuite/ld-elfvsb/define.s +++ b/ld/testsuite/ld-elfvsb/define.s @@ -1,10 +1,10 @@ .data .globl protected - .type protected,@object + .type protected,"object" protected: .globl hidden - .type hidden,@object + .type hidden,"object" hidden: .globl internal - .type internal,@object + .type internal,"object" internal: |