From 736bd9358ec8c1cdd1c77025b10e576983c4001c Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 31 Jan 2018 21:08:05 -0500 Subject: Allow intrinsics to write flags --- binaryninjaapi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 9bdb0058..66c4b861 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2678,7 +2678,8 @@ namespace BinaryNinja ExprId BoolToInt(size_t size, ExprId a, const ILSourceLocation& loc = ILSourceLocation()); ExprId SystemCall(const ILSourceLocation& loc = ILSourceLocation()); ExprId Intrinsic(const std::vector& outputs, uint32_t intrinsic, - const std::vector& params, const ILSourceLocation& loc = ILSourceLocation()); + const std::vector& params, uint32_t flags = 0, + const ILSourceLocation& loc = ILSourceLocation()); ExprId IntrinsicSSA(const std::vector& outputs, uint32_t intrinsic, const std::vector& params, const ILSourceLocation& loc = ILSourceLocation()); ExprId Breakpoint(const ILSourceLocation& loc = ILSourceLocation()); -- cgit v1.3.1