Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Fix the EM_TILEGX number in the ELF header



details:   https://anonhg.NetBSD.org/src/rev/62cb300b49cc
branches:  trunk
changeset: 466775:62cb300b49cc
user:      kamil <kamil%NetBSD.org@localhost>
date:      Thu Jan 02 04:28:51 2020 +0000

description:
Fix the EM_TILEGX number in the ELF header

source: http://www.sco.com/developers/gabi/latest/ch4.eheader.html

191 is confirmed in LLVM, GNU toolchain, FreeBSD.

diffstat:

 sys/sys/exec_elf.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ce9c067ad74e -r 62cb300b49cc sys/sys/exec_elf.h
--- a/sys/sys/exec_elf.h        Thu Jan 02 02:00:35 2020 +0000
+++ b/sys/sys/exec_elf.h        Thu Jan 02 04:28:51 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_elf.h,v 1.161 2019/06/07 23:35:52 christos Exp $  */
+/*     $NetBSD: exec_elf.h,v 1.162 2020/01/02 04:28:51 kamil Exp $     */
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -308,7 +308,7 @@
 #define EM_TILE64      187     /* Tilera TILE64 multicore architecture family */
 #define EM_TILEPRO     188     /* Tilera TILEPro multicore architecture family */
 #define EM_MICROBLAZE  189     /* Xilinx MicroBlaze 32-bit RISC soft processor core */
-#define EM_TILEGX      192     /* Tilera TILE-GX multicore architecture family */
+#define EM_TILEGX      191     /* Tilera TILE-GX multicore architecture family */
 #define EM_Z80         220     /* Zilog Z80 */
 #define EM_RISCV       243     /* RISC-V */
 



Home | Main Index | Thread Index | Old Index