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 /lowlevelilinstruction.h | |
| parent | fd51307c7fa5baff29860b1e3be09aafca13c2f0 (diff) | |
Add rounding instructions
Diffstat (limited to 'lowlevelilinstruction.h')
| -rw-r--r-- | lowlevelilinstruction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h index 4679f556..3cd1c8f4 100644 --- a/lowlevelilinstruction.h +++ b/lowlevelilinstruction.h @@ -1249,4 +1249,8 @@ namespace BinaryNinja template <> struct LowLevelILInstructionAccessor<LLIL_FLOAT_TO_INT>: public LowLevelILOneOperandInstruction {}; template <> struct LowLevelILInstructionAccessor<LLIL_INT_TO_FLOAT>: public LowLevelILOneOperandInstruction {}; template <> struct LowLevelILInstructionAccessor<LLIL_FLOAT_CONV>: public LowLevelILOneOperandInstruction {}; + template <> struct LowLevelILInstructionAccessor<LLIL_ROUND_TO_INT>: public LowLevelILOneOperandInstruction {}; + template <> struct LowLevelILInstructionAccessor<LLIL_FLOOR>: public LowLevelILOneOperandInstruction {}; + template <> struct LowLevelILInstructionAccessor<LLIL_CEIL>: public LowLevelILOneOperandInstruction {}; + template <> struct LowLevelILInstructionAccessor<LLIL_FTRUNC>: public LowLevelILOneOperandInstruction {}; } |
