aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>2006-09-11 13:01:12 +0000
committerpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>2006-09-11 13:01:12 +0000
commit690b361631ad223c4e49d926d04d2d2eccf6d1d2 (patch)
tree295f2b306df0343feb96ef62b3e1b368dcd0ecd8
parentb2bbba23354282f152575c94f545a5b0aed71359 (diff)
2006-09-11 Paul Brook <paul@codesourcery.com>csl/sourcerygxx/4.1-19
gcc/ * config/arm/libunwind.S: Assemble for armv5t, not armv5. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/csl/sourcerygxx-4_1@116846 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog.csl5
-rw-r--r--gcc/config/arm/libunwind.S2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index 5b09f7625c7..28062c8f8a6 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,3 +1,8 @@
+2006-09-11 Paul Brook <paul@codesourcery.com>
+
+ gcc/
+ * config/arm/libunwind.S: Assemble for armv5t, not armv5.
+
2006-09-11 Nathan Sidwell <nathan@codesourcery.com>
gcc/
diff --git a/gcc/config/arm/libunwind.S b/gcc/config/arm/libunwind.S
index c3194d24a75..1faa4c72a41 100644
--- a/gcc/config/arm/libunwind.S
+++ b/gcc/config/arm/libunwind.S
@@ -45,7 +45,7 @@
/* Some coprocessors require armv5. We know this code will never be run on
other cpus. Tell gas to allow armv5, but only mark the objects as armv4.
*/
-.arch armv5
+.arch armv5t
#ifdef __ARM_ARCH_4T__
.object_arch armv4t
#else