mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-20 11:39:25 +00:00
1e47ca1e70
Bring in upstream fix for gcc outputting an incorrect .machine directive. Signed-off-by: Chris Packham <judge.packham@gmail.com>
60 lines
1.5 KiB
Diff
60 lines
1.5 KiB
Diff
From d568abb25fc799123168aac840372b28bb81f85d Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Huber <sebastian.huber@embedded-brains.de>
|
|
Date: Tue, 18 Jan 2022 12:44:53 +0100
|
|
Subject: [PATCH] powerpc: Fix asm machine directive for some CPUs
|
|
|
|
For some CPUs, the assembler machine directive cannot be determined by ISA
|
|
flags.
|
|
|
|
gcc/
|
|
|
|
PR target/104090
|
|
* config/rs6000/rs6000.c (rs6000_machine_from_flags): Use also
|
|
rs6000_cpu.
|
|
---
|
|
gcc/config/rs6000/rs6000.c | 28 ++++++++++++++++++++++++++++
|
|
1 file changed, 28 insertions(+)
|
|
|
|
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
|
|
index 4b473e00be39..5404fb187556 100644
|
|
--- a/gcc/config/rs6000/rs6000.c
|
|
+++ b/gcc/config/rs6000/rs6000.c
|
|
@@ -5547,6 +5547,34 @@ const char *rs6000_machine;
|
|
const char *
|
|
rs6000_machine_from_flags (void)
|
|
{
|
|
+ /* For some CPUs, the machine cannot be determined by ISA flags. We have to
|
|
+ check them first. */
|
|
+ switch (rs6000_cpu)
|
|
+ {
|
|
+ case PROCESSOR_PPC8540:
|
|
+ case PROCESSOR_PPC8548:
|
|
+ return "e500";
|
|
+
|
|
+ case PROCESSOR_PPCE300C2:
|
|
+ case PROCESSOR_PPCE300C3:
|
|
+ return "e300";
|
|
+
|
|
+ case PROCESSOR_PPCE500MC:
|
|
+ return "e500mc";
|
|
+
|
|
+ case PROCESSOR_PPCE500MC64:
|
|
+ return "e500mc64";
|
|
+
|
|
+ case PROCESSOR_PPCE5500:
|
|
+ return "e5500";
|
|
+
|
|
+ case PROCESSOR_PPCE6500:
|
|
+ return "e6500";
|
|
+
|
|
+ default:
|
|
+ break;
|
|
+ }
|
|
+
|
|
HOST_WIDE_INT flags = rs6000_isa_flags;
|
|
|
|
/* Disable the flags that should never influence the .machine selection. */
|
|
--
|
|
2.35.1
|
|
|