aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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