public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: [GCC][PATCH][ARM] Regenerate arm-tables.opt for Armv8.1-M patch
       [not found] <56f8c731-c53a-4147-bde1-3de64c36fca8@AM5EUR03FT059.eop-EUR03.prod.protection.outlook.com>
@ 2020-02-06 16:39 ` Kyrill Tkachov
  0 siblings, 0 replies; 2+ messages in thread
From: Kyrill Tkachov @ 2020-02-06 16:39 UTC (permalink / raw)
  To: Mihail Ionescu, gcc-patches; +Cc: Richard Earnshaw


On 2/3/20 5:18 PM, Mihail Ionescu wrote:
> Hi all,
>
> I've regenerated arm-tables.opt in config/arm to replace the improperly
> generated arm-tables.opt file from "[PATCH, GCC/ARM, 2/10] Add command
> line support for Armv8.1-M Mainline" 
> (9722215a027b68651c3c7a8af9204d033197e9c0).
>
>
> 2020-02-03  Mihail Ionescu  <mihail.ionescu@arm.com>
>
>     * config/arm/arm-tables.opt: Regenerate.
>
> Ok for trunk?


Ok. I would consider it obvious too.

Thanks,

Kyrill


>
> Regards,
> Mihail
>
>
> ###############     Attachment also inlined for ease of reply    
> ###############
>
>
> diff --git a/gcc/config/arm/arm-tables.opt b/gcc/config/arm/arm-tables.opt
> index 
> f295a4cffa2bbb3f8163fb9cef784b5af59aee12..a51a131505d184f120a3cfc51273b419bb0cb103 
> 100644
> --- a/gcc/config/arm/arm-tables.opt
> +++ b/gcc/config/arm/arm-tables.opt
> @@ -353,13 +353,16 @@ EnumValue
>  Enum(arm_arch) String(armv8-m.main) Value(28)
>
>  EnumValue
> -Enum(arm_arch) String(armv8.1-m.main) Value(29)
> +Enum(arm_arch) String(armv8-r) Value(29)
>
>  EnumValue
> -Enum(arm_arch) String(iwmmxt) Value(30)
> +Enum(arm_arch) String(armv8.1-m.main) Value(30)
>
>  EnumValue
> -Enum(arm_arch) String(iwmmxt2) Value(31)
> +Enum(arm_arch) String(iwmmxt) Value(31)
> +
> +EnumValue
> +Enum(arm_arch) String(iwmmxt2) Value(32)
>
>  Enum
>  Name(arm_fpu) Type(enum fpu_type)
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [GCC][PATCH][ARM] Regenerate arm-tables.opt for Armv8.1-M patch
@ 2020-02-03 17:20 Mihail Ionescu
  0 siblings, 0 replies; 2+ messages in thread
From: Mihail Ionescu @ 2020-02-03 17:20 UTC (permalink / raw)
  To: gcc-patches; +Cc: Richard.Earnshaw, Kyrylo.Tkachov

[-- Attachment #1: Type: text/plain, Size: 1175 bytes --]

Hi all,

I've regenerated arm-tables.opt in config/arm to replace the improperly
generated arm-tables.opt file from "[PATCH, GCC/ARM, 2/10] Add command
line support for Armv8.1-M Mainline" (9722215a027b68651c3c7a8af9204d033197e9c0).


2020-02-03  Mihail Ionescu  <mihail.ionescu@arm.com>

    * config/arm/arm-tables.opt: Regenerate.

Ok for trunk?

Regards,
Mihail


###############     Attachment also inlined for ease of reply    ###############


diff --git a/gcc/config/arm/arm-tables.opt b/gcc/config/arm/arm-tables.opt
index f295a4cffa2bbb3f8163fb9cef784b5af59aee12..a51a131505d184f120a3cfc51273b419bb0cb103 100644
--- a/gcc/config/arm/arm-tables.opt
+++ b/gcc/config/arm/arm-tables.opt
@@ -353,13 +353,16 @@ EnumValue
 Enum(arm_arch) String(armv8-m.main) Value(28)
 
 EnumValue
-Enum(arm_arch) String(armv8.1-m.main) Value(29)
+Enum(arm_arch) String(armv8-r) Value(29)
 
 EnumValue
-Enum(arm_arch) String(iwmmxt) Value(30)
+Enum(arm_arch) String(armv8.1-m.main) Value(30)
 
 EnumValue
-Enum(arm_arch) String(iwmmxt2) Value(31)
+Enum(arm_arch) String(iwmmxt) Value(31)
+
+EnumValue
+Enum(arm_arch) String(iwmmxt2) Value(32)
 
 Enum
 Name(arm_fpu) Type(enum fpu_type)


[-- Attachment #2: diff.patch --]
[-- Type: text/plain, Size: 724 bytes --]

diff --git a/gcc/config/arm/arm-tables.opt b/gcc/config/arm/arm-tables.opt
index f295a4cffa2bbb3f8163fb9cef784b5af59aee12..a51a131505d184f120a3cfc51273b419bb0cb103 100644
--- a/gcc/config/arm/arm-tables.opt
+++ b/gcc/config/arm/arm-tables.opt
@@ -353,13 +353,16 @@ EnumValue
 Enum(arm_arch) String(armv8-m.main) Value(28)
 
 EnumValue
-Enum(arm_arch) String(armv8.1-m.main) Value(29)
+Enum(arm_arch) String(armv8-r) Value(29)
 
 EnumValue
-Enum(arm_arch) String(iwmmxt) Value(30)
+Enum(arm_arch) String(armv8.1-m.main) Value(30)
 
 EnumValue
-Enum(arm_arch) String(iwmmxt2) Value(31)
+Enum(arm_arch) String(iwmmxt) Value(31)
+
+EnumValue
+Enum(arm_arch) String(iwmmxt2) Value(32)
 
 Enum
 Name(arm_fpu) Type(enum fpu_type)


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-06 16:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <56f8c731-c53a-4147-bde1-3de64c36fca8@AM5EUR03FT059.eop-EUR03.prod.protection.outlook.com>
2020-02-06 16:39 ` [GCC][PATCH][ARM] Regenerate arm-tables.opt for Armv8.1-M patch Kyrill Tkachov
2020-02-03 17:20 Mihail Ionescu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).