diff options
author | Xin Tong <trent.xin.tong@gmail.com> | 2018-03-19 13:35:23 +0000 |
---|---|---|
committer | Xin Tong <trent.xin.tong@gmail.com> | 2018-03-19 13:35:23 +0000 |
commit | 116c30918142a5ee47299e714b3ae31e0ecaa0b9 (patch) | |
tree | cece73208da1bbffb7b2d026c1f4c140b82b1c1e /llvm/lib/CodeGen/StackColoring.cpp | |
parent | 91ab2ee9542c398ac5b2a322a72f2803202bd9e2 (diff) | |
download | bcm5719-llvm-116c30918142a5ee47299e714b3ae31e0ecaa0b9.tar.gz bcm5719-llvm-116c30918142a5ee47299e714b3ae31e0ecaa0b9.zip |
Stylish change. NFC
llvm-svn: 327838
Diffstat (limited to 'llvm/lib/CodeGen/StackColoring.cpp')
-rw-r--r-- | llvm/lib/CodeGen/StackColoring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp index 608845498b4..9d1bd30d277 100644 --- a/llvm/lib/CodeGen/StackColoring.cpp +++ b/llvm/lib/CodeGen/StackColoring.cpp @@ -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()) |