aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2009-07-23 15:03:39 +0000
committerNick Clifton <nickc@redhat.com>2009-07-23 15:03:39 +0000
commitf658ca2c9fdaa19b2f68b6a9c8138ca0536d03c7 (patch)
tree554bc9857cd5fa25a37057af469cd777ec60261e
parent3e7a7d11f1106a451c26b49fcb8fafb5059fd684 (diff)
downloadbinutils-f658ca2c9fdaa19b2f68b6a9c8138ca0536d03c7.zip
binutils-f658ca2c9fdaa19b2f68b6a9c8138ca0536d03c7.tar.gz
binutils-f658ca2c9fdaa19b2f68b6a9c8138ca0536d03c7.tar.bz2
Reorder variable declarations to avoid problems with MIPS targets.
-rw-r--r--gas/testsuite/gas/elf/type.s6
1 files changed, 4 insertions, 2 deletions
diff --git a/gas/testsuite/gas/elf/type.s b/gas/testsuite/gas/elf/type.s
index 159bf6d..d0a1afd 100644
--- a/gas/testsuite/gas/elf/type.s
+++ b/gas/testsuite/gas/elf/type.s
@@ -26,10 +26,12 @@ tls_object:
.size notype,1
notype:
.byte 0x0
- .comm common, 1
- .type common,STT_COMMON
.type unique_global,%gnu_unique_object
unique_global:
.byte 0x0
.size unique_global,1
+
+ .comm common, 1
+ .type common,STT_COMMON
+ \ No newline at end of file