diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/sparc.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3703f80..ce86557 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2016-11-22 Jose E. Marchesi <jose.marchesi@oracle.com> + + * opcode/sparc.h (sparc_opcode_arch): New fields hwcaps and + hwcaps2. + 2016-11-22 Alan Modra <amodra@gmail.com> PR 20744 diff --git a/include/opcode/sparc.h b/include/opcode/sparc.h index 7e44408..6c66771 100644 --- a/include/opcode/sparc.h +++ b/include/opcode/sparc.h @@ -80,6 +80,10 @@ typedef struct sparc_opcode_arch (SPARC_OPCODE_ARCH_MASK (..._V6) | SPARC_OPCODE_ARCH_MASK (..._V7)). These are short's because sparc_opcode.architecture is. */ short supported; + /* Bitmaps describing the set of hardware capabilities implemented + by the opcode arch. */ + int hwcaps; + int hwcaps2; } sparc_opcode_arch; extern const struct sparc_opcode_arch sparc_opcode_archs[]; |