Skip to content

Commit d2605ba

Browse files
committed
[BOLT] Fix format && style
1 parent eb5910d commit d2605ba

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

bolt/lib/Passes/InsertNegateRAStatePass.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,11 @@ void InsertNegateRAState::fillUnknownStubs(BinaryFunction &BF) {
215215
continue;
216216
}
217217

218-
if (BC.MIB->isPSignOnLR(PrevInst)) {
219-
PrevRAState = true;
220-
} else if (BC.MIB->isPAuthOnLR(PrevInst)) {
221-
PrevRAState = false;
222-
}
223-
markUnknownBlock(BC, *BB, *PrevRAState);
218+
if (BC.MIB->isPSignOnLR(PrevInst))
219+
PrevRAState = true;
220+
else if (BC.MIB->isPAuthOnLR(PrevInst))
221+
PrevRAState = false;
222+
markUnknownBlock(BC, *BB, *PrevRAState);
224223
}
225224
if (FirstIter) {
226225
FirstIter = false;

0 commit comments

Comments
 (0)