Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jun 2019 19:43:13 +0000 (UTC)
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r349562 - head/contrib/elftoolchain/common
Message-ID:  <201906301943.x5UJhD6M092273@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mhorne
Date: Sun Jun 30 19:43:13 2019
New Revision: 349562
URL: https://svnweb.freebsd.org/changeset/base/349562

Log:
  elftoolchain: fix an incorrect e_flags description
  
  r349482 introduced the definitions and descriptions of the RISC-V
  specific e_flags values to elftoolchain. However, the description for
  the EF_RISCV_RVE flag was incorrectly duplicated from EF_RISCV_RVC. Fix
  this by providing the proper description for this flag.
  
  Reported by:	jhb
  Approved by:	markj (mentor)

Modified:
  head/contrib/elftoolchain/common/elfdefinitions.h

Modified: head/contrib/elftoolchain/common/elfdefinitions.h
==============================================================================
--- head/contrib/elftoolchain/common/elfdefinitions.h	Sun Jun 30 17:03:14 2019	(r349561)
+++ head/contrib/elftoolchain/common/elfdefinitions.h	Sun Jun 30 19:43:13 2019	(r349562)
@@ -439,7 +439,7 @@ _ELF_DEFINE_EF(EF_RISCV_FLOAT_ABI_DOUBLE, 0x00000004UL
 _ELF_DEFINE_EF(EF_RISCV_FLOAT_ABI_QUAD, 0x00000006UL,			\
 	"Quad precision floating point")				\
 _ELF_DEFINE_EF(EF_RISCV_RVE,	    0x00000008UL,			\
-	"Compressed instruction ABI")					\
+	"RV32E embedded ABI")						\
 _ELF_DEFINE_EF(EF_RISCV_TSO,	    0x00000010UL,			\
 	"RVTSO memory consistency model")				\
 _ELF_DEFINE_EF(EF_SPARC_EXT_MASK,   0x00ffff00UL,			\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906301943.x5UJhD6M092273>