aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2006-09-11 13:01:12 +0000
committerPaul Brook <paul@codesourcery.com>2006-09-11 13:01:12 +0000
commit1f013802d654accdc48f9d6db0b49324643cf1b4 (patch)
tree295f2b306df0343feb96ef62b3e1b368dcd0ecd8
parent5b89e4dcd5a8db31ca6af650d0d3eb4fc143051f (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: https://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