diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/arc.h | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3523a27..8b48824 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2016-03-21 Andrew Burgess <andrew.burgess@embecosm.com> + + * opcode/arc.h (ARC_OPCODE_BASE): Delete. + 2016-03-15 H.J. Lu <hongjiu.lu@intel.com> PR ld/19807 diff --git a/include/opcode/arc.h b/include/opcode/arc.h index 6f5bc98..d33b878 100644 --- a/include/opcode/arc.h +++ b/include/opcode/arc.h @@ -171,11 +171,6 @@ extern const unsigned arc_num_opcodes; #define ARC_XMAC 0x1000 #define ARC_CRC 0x1000 -/* Base architecture -- all cpus. */ -#define ARC_OPCODE_BASE \ - (ARC_OPCODE_ARC600 | ARC_OPCODE_ARC700 \ - | ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS) - /* A macro to check for short instructions. */ #define ARC_SHORT(mask) \ (((mask) & 0xFFFF0000) ? 0 : 1) |