Skip to content

Commit

Permalink
Stylish change. NFC
Browse files Browse the repository at this point in the history
llvm-svn: 327838
  • Loading branch information
trentxintong committed Mar 19, 2018
1 parent 91ab2ee commit 116c309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/CodeGen/StackColoring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -600,12 +600,12 @@ bool StackColoring::isLifetimeStartOrEnd(const MachineInstr &MI,
isStart = false;
return true;
}
if (! applyFirstUse(Slot)) {
if (!applyFirstUse(Slot)) {
isStart = true;
return true;
}
} else if (LifetimeStartOnFirstUse && !ProtectFromEscapedAllocas) {
if (! MI.isDebugValue()) {
if (!MI.isDebugValue()) {
bool found = false;
for (const MachineOperand &MO : MI.operands()) {
if (!MO.isFI())
Expand Down

0 comments on commit 116c309

Please sign in to comment.