diff options
Diffstat (limited to 'lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h')
-rw-r--r-- | lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h b/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h index ff7779ec1e789..2bcff881788c4 100644 --- a/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h +++ b/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h @@ -33,9 +33,8 @@ namespace MipsII { MO_NO_FLAG, - /// MO_GOT16 - Represents the offset into the global offset table at which + /// MO_GOT - Represents the offset into the global offset table at which /// the address the relocation entry symbol resides during execution. - MO_GOT16, MO_GOT, /// MO_GOT_CALL - Represents the offset into the global offset table at @@ -117,7 +116,12 @@ namespace MipsII { /// FrmOther - This form is for instructions that have no specific format. FrmOther = 6, - FormMask = 15 + FormMask = 15, + /// IsCTI - Instruction is a Control Transfer Instruction. + IsCTI = 1 << 4, + /// HasForbiddenSlot - Instruction has a forbidden slot. + HasForbiddenSlot = 1 << 5 + }; } } |