2016-06-13 04:35:40 +00:00
|
|
|
From 5268e8d175437f0bc18487d78d5f083b45ff17f3 Mon Sep 17 00:00:00 2001
|
2015-01-13 03:16:10 +00:00
|
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
Date: Wed, 7 Jan 2015 18:43:57 -0700
|
2016-06-13 04:35:40 +00:00
|
|
|
Subject: [PATCH] ARMv5: disable LDRD/STRD
|
2015-01-13 03:16:10 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
gcc/config/arm/arm.h | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h
|
2016-05-07 05:02:19 +00:00
|
|
|
index ad123dd..87697f7 100644
|
2015-01-13 03:16:10 +00:00
|
|
|
--- a/gcc/config/arm/arm.h
|
|
|
|
+++ b/gcc/config/arm/arm.h
|
2016-05-07 05:02:19 +00:00
|
|
|
@@ -166,7 +166,7 @@ extern void (*arm_lang_output_object_attributes_hook)(void);
|
2015-01-13 03:16:10 +00:00
|
|
|
/* Thumb-1 only. */
|
|
|
|
#define TARGET_THUMB1_ONLY (TARGET_THUMB1 && !arm_arch_notm)
|
|
|
|
|
|
|
|
-#define TARGET_LDRD (arm_arch5e && ARM_DOUBLEWORD_ALIGN \
|
|
|
|
+#define TARGET_LDRD (arm_arch6 && ARM_DOUBLEWORD_ALIGN \
|
|
|
|
&& !TARGET_THUMB1)
|
|
|
|
|
|
|
|
#define TARGET_CRC32 (arm_arch_crc)
|
|
|
|
--
|
2016-05-07 05:02:19 +00:00
|
|
|
2.7.2
|
2015-01-13 03:16:10 +00:00
|
|
|
|