PKGBUILDs/core/gcc/0001-ARMv5-disable-LDRD-STRD.patch

26 lines
817 B
Diff
Raw Normal View History

2019-12-17 03:00:13 +00:00
From 09eb4fbd5d0e51490da810a1ee0c6ed73c1c8688 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
2019-12-17 03:00:13 +00:00
index 4866e1e4b7d..a4bd43a364f 100644
2015-01-13 03:16:10 +00:00
--- a/gcc/config/arm/arm.h
+++ b/gcc/config/arm/arm.h
2019-12-17 03:00:13 +00:00
@@ -167,7 +167,7 @@ emission of floating point pcs attributes. */
2015-01-13 03:16:10 +00:00
/* Thumb-1 only. */
#define TARGET_THUMB1_ONLY (TARGET_THUMB1 && !arm_arch_notm)
2019-12-17 03:00:13 +00:00
-#define TARGET_LDRD (arm_arch5te && ARM_DOUBLEWORD_ALIGN \
2015-01-13 03:16:10 +00:00
+#define TARGET_LDRD (arm_arch6 && ARM_DOUBLEWORD_ALIGN \
&& !TARGET_THUMB1)
#define TARGET_CRC32 (arm_arch_crc)
--
2019-12-17 03:00:13 +00:00
2.22.0
2015-01-13 03:16:10 +00:00