Skip to content

Commit 1549605

Browse files
committed
remove parenthesis
1 parent 02db00b commit 1549605

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/LiveIntervals.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ bool LiveIntervals::invalidate(
137137

138138
// LiveIntervals holds pointers to these results, so check for their
139139
// invalidation.
140-
return (Inv.invalidate<SlotIndexesAnalysis>(MF, PA) ||
141-
Inv.invalidate<MachineDominatorTreeAnalysis>(MF, PA));
140+
return Inv.invalidate<SlotIndexesAnalysis>(MF, PA) ||
141+
Inv.invalidate<MachineDominatorTreeAnalysis>(MF, PA);
142142
}
143143

144144
void LiveIntervals::clear() {

0 commit comments

Comments
 (0)