diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-08-21 15:47:34 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2018-08-21 15:47:34 -0400 |
| commit | 5841af2db8e8dcf4e0da0c438ac040c5fa90038b (patch) | |
| tree | 45512fef65afea712ad5e87bea9a27455f751e5a /binaryninjaapi.h | |
| parent | 8e320c4be695cd47ae93673320d525ce513cec90 (diff) | |
Add return hint MLIL instruction (used in intermediate stages, not emitted in final forms)
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 32ed38d2..e0406592 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3187,6 +3187,7 @@ namespace BinaryNinja ExprId Jump(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); ExprId JumpTo(ExprId dest, const std::vector<BNMediumLevelILLabel*>& targets, const ILSourceLocation& loc = ILSourceLocation()); + ExprId ReturnHint(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); ExprId Call(const std::vector<Variable>& output, ExprId dest, const std::vector<ExprId>& params, const ILSourceLocation& loc = ILSourceLocation()); ExprId CallUntyped(const std::vector<Variable>& output, ExprId dest, const std::vector<Variable>& params, |
