Skip to content

Commit 647b600

Browse files
committed
Format
1 parent 2e6254c commit 647b600

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/instruction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,9 +697,9 @@ find_instructions_between(instruction_ref start, instruction_ref end, const_modu
697697
return;
698698
if(not contains(inss, ins))
699699
return;
700-
if (not result.insert(ins).second)
700+
if(not result.insert(ins).second)
701701
return;
702-
for(auto output:ins->outputs())
702+
for(auto output : ins->outputs())
703703
self(output);
704704
})(start);
705705
return result;

0 commit comments

Comments
 (0)