public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES
@ 2022-05-03 21:46 Luis Machado
  2022-05-03 21:51 ` Luis Machado
  2022-05-04  4:40 ` Alan Modra
  0 siblings, 2 replies; 4+ messages in thread
From: Luis Machado @ 2022-05-03 21:46 UTC (permalink / raw)
  To: binutils

TILE-Gx is a 64-bit core, so we should include those files in the
TARGET64_LIBOPCODES_CFILES as opposed to TARGET32_LIBOPCODES_CFILES.
---
 opcodes/Makefile.am | 6 +++---
 opcodes/Makefile.in | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am
index afd19fa7785..10ea3368d7f 100644
--- a/opcodes/Makefile.am
+++ b/opcodes/Makefile.am
@@ -115,7 +115,9 @@ TARGET64_LIBOPCODES_CFILES = \
 	mmix-opc.c \
 	nfp-dis.c \
 	riscv-dis.c \
-	riscv-opc.c
+	riscv-opc.c \
+	tilegx-dis.c \
+	tilegx-opc.c
 
 TARGET32_LIBOPCODES_CFILES = \
 	arc-dis.c \
@@ -252,8 +254,6 @@ TARGET32_LIBOPCODES_CFILES = \
 	tic54x-dis.c \
 	tic54x-opc.c \
 	tic6x-dis.c \
-	tilegx-dis.c \
-	tilegx-opc.c \
 	tilepro-dis.c \
 	tilepro-opc.c \
 	v850-dis.c \
diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in
index 3ab8bfb0548..b8545a0fa82 100644
--- a/opcodes/Makefile.in
+++ b/opcodes/Makefile.in
@@ -507,7 +507,9 @@ TARGET64_LIBOPCODES_CFILES = \
 	mmix-opc.c \
 	nfp-dis.c \
 	riscv-dis.c \
-	riscv-opc.c
+	riscv-opc.c \
+	tilegx-dis.c \
+	tilegx-opc.c
 
 TARGET32_LIBOPCODES_CFILES = \
 	arc-dis.c \
@@ -644,8 +646,6 @@ TARGET32_LIBOPCODES_CFILES = \
 	tic54x-dis.c \
 	tic54x-opc.c \
 	tic6x-dis.c \
-	tilegx-dis.c \
-	tilegx-opc.c \
 	tilepro-dis.c \
 	tilepro-opc.c \
 	v850-dis.c \
-- 
2.25.1


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

* Re: [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES
  2022-05-03 21:46 [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES Luis Machado
@ 2022-05-03 21:51 ` Luis Machado
  2022-05-04  4:40 ` Alan Modra
  1 sibling, 0 replies; 4+ messages in thread
From: Luis Machado @ 2022-05-03 21:51 UTC (permalink / raw)
  To: binutils

On 5/3/22 22:46, Luis Machado via Binutils wrote:
> TILE-Gx is a 64-bit core, so we should include those files in the
> TARGET64_LIBOPCODES_CFILES as opposed to TARGET32_LIBOPCODES_CFILES.
> ---
>   opcodes/Makefile.am | 6 +++---
>   opcodes/Makefile.in | 6 +++---
>   2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am
> index afd19fa7785..10ea3368d7f 100644
> --- a/opcodes/Makefile.am
> +++ b/opcodes/Makefile.am
> @@ -115,7 +115,9 @@ TARGET64_LIBOPCODES_CFILES = \
>   	mmix-opc.c \
>   	nfp-dis.c \
>   	riscv-dis.c \
> -	riscv-opc.c
> +	riscv-opc.c \
> +	tilegx-dis.c \
> +	tilegx-opc.c
>   
>   TARGET32_LIBOPCODES_CFILES = \
>   	arc-dis.c \
> @@ -252,8 +254,6 @@ TARGET32_LIBOPCODES_CFILES = \
>   	tic54x-dis.c \
>   	tic54x-opc.c \
>   	tic6x-dis.c \
> -	tilegx-dis.c \
> -	tilegx-opc.c \
>   	tilepro-dis.c \
>   	tilepro-opc.c \
>   	v850-dis.c \
> diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in
> index 3ab8bfb0548..b8545a0fa82 100644
> --- a/opcodes/Makefile.in
> +++ b/opcodes/Makefile.in
> @@ -507,7 +507,9 @@ TARGET64_LIBOPCODES_CFILES = \
>   	mmix-opc.c \
>   	nfp-dis.c \
>   	riscv-dis.c \
> -	riscv-opc.c
> +	riscv-opc.c \
> +	tilegx-dis.c \
> +	tilegx-opc.c
>   
>   TARGET32_LIBOPCODES_CFILES = \
>   	arc-dis.c \
> @@ -644,8 +646,6 @@ TARGET32_LIBOPCODES_CFILES = \
>   	tic54x-dis.c \
>   	tic54x-opc.c \
>   	tic6x-dis.c \
> -	tilegx-dis.c \
> -	tilegx-opc.c \
>   	tilepro-dis.c \
>   	tilepro-opc.c \
>   	v850-dis.c \

FTR, gdb-side patch touching TILE-Gx sent here: 
https://sourceware.org/pipermail/gdb-patches/2022-May/188650.html

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

* Re: [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES
  2022-05-03 21:46 [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES Luis Machado
  2022-05-03 21:51 ` Luis Machado
@ 2022-05-04  4:40 ` Alan Modra
  2022-05-05  9:04   ` Luis Machado
  1 sibling, 1 reply; 4+ messages in thread
From: Alan Modra @ 2022-05-04  4:40 UTC (permalink / raw)
  To: Luis Machado; +Cc: binutils

On Tue, May 03, 2022 at 10:46:54PM +0100, Luis Machado via Binutils wrote:
> TILE-Gx is a 64-bit core, so we should include those files in the
> TARGET64_LIBOPCODES_CFILES as opposed to TARGET32_LIBOPCODES_CFILES.

OK, thanks.

-- 
Alan Modra
Australia Development Lab, IBM

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

* Re: [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES
  2022-05-04  4:40 ` Alan Modra
@ 2022-05-05  9:04   ` Luis Machado
  0 siblings, 0 replies; 4+ messages in thread
From: Luis Machado @ 2022-05-05  9:04 UTC (permalink / raw)
  To: Alan Modra; +Cc: binutils

On 5/4/22 05:40, Alan Modra wrote:
> On Tue, May 03, 2022 at 10:46:54PM +0100, Luis Machado via Binutils wrote:
>> TILE-Gx is a 64-bit core, so we should include those files in the
>> TARGET64_LIBOPCODES_CFILES as opposed to TARGET32_LIBOPCODES_CFILES.
> 
> OK, thanks.
> 

pushed now.

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

end of thread, other threads:[~2022-05-05  9:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-03 21:46 [PATCH] Move TILE-Gx files to TARGET64_LIBOPCODES_CFILES Luis Machado
2022-05-03 21:51 ` Luis Machado
2022-05-04  4:40 ` Alan Modra
2022-05-05  9:04   ` Luis Machado

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).