diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-02-02 18:02:57 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2018-02-02 18:02:57 -0500 |
| commit | 331bfd4e4a648de8aba4fefd8301703a6a3440c9 (patch) | |
| tree | 6a2287c7d4731c787918e47161eb944fc225051c /mediumlevelilinstruction.h | |
| parent | fd51307c7fa5baff29860b1e3be09aafca13c2f0 (diff) | |
Add rounding instructions
Diffstat (limited to 'mediumlevelilinstruction.h')
| -rw-r--r-- | mediumlevelilinstruction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mediumlevelilinstruction.h b/mediumlevelilinstruction.h index de92764d..cdda87f5 100644 --- a/mediumlevelilinstruction.h +++ b/mediumlevelilinstruction.h @@ -1012,4 +1012,8 @@ namespace BinaryNinja template <> struct MediumLevelILInstructionAccessor<MLIL_FLOAT_TO_INT>: public MediumLevelILOneOperandInstruction {}; template <> struct MediumLevelILInstructionAccessor<MLIL_INT_TO_FLOAT>: public MediumLevelILOneOperandInstruction {}; template <> struct MediumLevelILInstructionAccessor<MLIL_FLOAT_CONV>: public MediumLevelILOneOperandInstruction {}; + template <> struct MediumLevelILInstructionAccessor<MLIL_ROUND_TO_INT>: public MediumLevelILOneOperandInstruction {}; + template <> struct MediumLevelILInstructionAccessor<MLIL_FLOOR>: public MediumLevelILOneOperandInstruction {}; + template <> struct MediumLevelILInstructionAccessor<MLIL_CEIL>: public MediumLevelILOneOperandInstruction {}; + template <> struct MediumLevelILInstructionAccessor<MLIL_FTRUNC>: public MediumLevelILOneOperandInstruction {}; } |
