summaryrefslogtreecommitdiff
path: root/erts/emulator/asmjit/x86/x86instdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/asmjit/x86/x86instdb.h')
-rw-r--r--erts/emulator/asmjit/x86/x86instdb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/asmjit/x86/x86instdb.h b/erts/emulator/asmjit/x86/x86instdb.h
index 99112891e0..c8a914f2b8 100644
--- a/erts/emulator/asmjit/x86/x86instdb.h
+++ b/erts/emulator/asmjit/x86/x86instdb.h
@@ -442,8 +442,8 @@ ASMJIT_VARAPI const CommonInfo _commonInfoTable[];
//! Instruction information.
struct InstInfo {
- //! Index to \ref _nameData.
- uint32_t _nameDataIndex : 14;
+ //! Reserved for future use.
+ uint32_t _reserved : 14;
//! Index to \ref _commonInfoTable.
uint32_t _commonInfoIndex : 10;
//! Index to \ref _additionalInfoTable.
@@ -461,7 +461,7 @@ struct InstInfo {
//! \name Accessors
//! \{
- //! Returns common information, see `CommonInfo`.
+ //! Returns common information, see \ref CommonInfo.
inline const CommonInfo& commonInfo() const noexcept { return _commonInfoTable[_commonInfoIndex]; }
//! Returns instruction flags, see \ref Flags.