This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix SH gas testsuite invalid assembly exposed by ec9ab52c


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=dafa877d360978c80c71ce6c64a4cbc29effdd10

commit dafa877d360978c80c71ce6c64a4cbc29effdd10
Author: Alan Modra <amodra@gmail.com>
Date:   Sat Dec 12 21:28:27 2015 +1030

    Fix SH gas testsuite invalid assembly exposed by ec9ab52c
    
    	* gas/sh/tlsd.s: Use .tdata not .tbss.
    	* gas/sh/tlsnopic.s: Likewise.

Diff:
---
 gas/testsuite/ChangeLog         | 5 +++++
 gas/testsuite/gas/sh/tlsd.s     | 2 +-
 gas/testsuite/gas/sh/tlsnopic.s | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog
index cd81f93..f288ca7 100644
--- a/gas/testsuite/ChangeLog
+++ b/gas/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2015-12-12  Alan Modra  <amodra@gmail.com>
+
+	* gas/sh/tlsd.s: Use .tdata not .tbss.
+	* gas/sh/tlsnopic.s: Likewise.
+
 2015-12-11  Matthew Wahab  <matthew.wahab@arm.com>
 
 	* gas/aarch64/system-2.d: Enable the statistical profiling
diff --git a/gas/testsuite/gas/sh/tlsd.s b/gas/testsuite/gas/sh/tlsd.s
index 8bf4f4e..fd4f448 100644
--- a/gas/testsuite/gas/sh/tlsd.s
+++ b/gas/testsuite/gas/sh/tlsd.s
@@ -1,4 +1,4 @@
-	.section	.tbss,"awT",@nobits
+	.section	.tdata,"awT",@progbits
 	.align 2
 	.global	foo, bar
 	.hidden bar
diff --git a/gas/testsuite/gas/sh/tlsnopic.s b/gas/testsuite/gas/sh/tlsnopic.s
index 8f4d00b..fac00a0 100644
--- a/gas/testsuite/gas/sh/tlsnopic.s
+++ b/gas/testsuite/gas/sh/tlsnopic.s
@@ -1,4 +1,4 @@
-	.section	.tbss,"awT",@nobits
+	.section	.tdata,"awT",@progbits
 	.align 2
 	.long	foo
 	.text


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]