From fd51307c7fa5baff29860b1e3be09aafca13c2f0 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 d1ca9cdb..3decc4e9 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2671,7 +2671,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