This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[comitted, PATCH] PR binutils/18316: SEC_MEP_VLIW is defined in include/elf/mep.h


Bits in section flags should only be defined in bfd/section.c.  This
patch moves SEC_MEP_VLIW to bfd/section.c.

bfd/

	PR binutils/18316
	* section.c (SEC_MEP_VLIW): New.
	* bfd-in2.h: Regenerated.

include/elf/

	PR binutils/18316
	* mep.h (SEC_MEP_VLIW): Removed.
---
 bfd/ChangeLog         | 6 ++++++
 bfd/bfd-in2.h         | 3 +++
 bfd/section.c         | 3 +++
 include/elf/ChangeLog | 5 +++++
 include/elf/mep.h     | 4 ----
 5 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f9aa3a7..b3dcd0e 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2015-04-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR binutils/18316
+	* section.c (SEC_MEP_VLIW): New.
+	* bfd-in2.h: Regenerated.
+
 2015-04-23  H.J. Lu  <hongjiu.lu@intel.com>
 
 	PR ld/18277
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h
index d4e2b9a..7c85fe8 100644
--- a/bfd/bfd-in2.h
+++ b/bfd/bfd-in2.h
@@ -1409,6 +1409,9 @@ typedef struct bfd_section
      TMS320C54X only.  */
 #define SEC_TIC54X_CLINK 0x20000000
 
+  /* This section contains vliw code.  This is for Toshiba MeP only.  */
+#define SEC_MEP_VLIW 0x20000000
+
   /* Indicate that section has the no read flag set. This happens
      when memory read flag isn't set. */
 #define SEC_COFF_NOREAD 0x40000000
diff --git a/bfd/section.c b/bfd/section.c
index cf63121..24422bf 100644
--- a/bfd/section.c
+++ b/bfd/section.c
@@ -354,6 +354,9 @@ CODE_FRAGMENT
 .     TMS320C54X only.  *}
 .#define SEC_TIC54X_CLINK 0x20000000
 .
+.  {* This section contains vliw code.  This is for Toshiba MeP only.  *}
+.#define SEC_MEP_VLIW 0x20000000
+.
 .  {* Indicate that section has the no read flag set. This happens
 .     when memory read flag isn't set. *}
 .#define SEC_COFF_NOREAD 0x40000000
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog
index d66e507..2f2fc80 100644
--- a/include/elf/ChangeLog
+++ b/include/elf/ChangeLog
@@ -1,3 +1,8 @@
+2015-04-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR binutils/18316
+	* mep.h (SEC_MEP_VLIW): Removed.
+
 2015-04-09  Nick Clifton  <nickc@redhat.com>
 
 	* rx.h (E_FLAG_RX_SINSNS_SET): New bit in e_flags field.
diff --git a/include/elf/mep.h b/include/elf/mep.h
index a107dd0..ae92be4 100644
--- a/include/elf/mep.h
+++ b/include/elf/mep.h
@@ -24,10 +24,6 @@
 
 #define SHF_MEP_VLIW		0x10000000	/* contains vliw code */
 
-/* This bit is reserved by BFD for processor specific stuff.  Name
-   it properly so that we can easily stay consistent elsewhere.  */
-#define SEC_MEP_VLIW		SEC_TIC54X_BLOCK
-
 #include "elf/reloc-macros.h"
 
 /* Note: The comments in this file are used by bfd/mep-relocs.pl to
-- 
2.1.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]