We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MediumLevelILFunction::live_instruction_for_variable
1 parent ea08356 commit 796b8acCopy full SHA for 796b8ac
rust/src/medium_level_il/function.rs
@@ -519,15 +519,15 @@ impl MediumLevelILFunction {
519
pub fn live_instruction_for_variable(
520
&self,
521
variable: &Variable,
522
- include_last_user: bool,
+ include_last_use: bool,
523
) -> Array<MediumLevelILInstruction> {
524
let mut count = 0;
525
let raw_var = BNVariable::from(variable);
526
let uses = unsafe {
527
BNGetMediumLevelILLiveInstructionsForVariable(
528
self.handle,
529
&raw_var,
530
- include_last_user,
+ include_last_use,
531
&mut count,
532
)
533
};
0 commit comments