Add braces, as suggested by a gcc warning.
llvm-svn: 61465
diff --git a/llvm/lib/CodeGen/PreAllocSplitting.cpp b/llvm/lib/CodeGen/PreAllocSplitting.cpp
index 3f303ae..e984d26 100644
--- a/llvm/lib/CodeGen/PreAllocSplitting.cpp
+++ b/llvm/lib/CodeGen/PreAllocSplitting.cpp
@@ -701,12 +701,13 @@
--walker;
// Must check begin() too.
- if (!found)
+ if (!found) {
if (BlockUses.count(walker))
found = true;
else
goto Fallback;
-
+ }
+
unsigned UseIndex = LIs->getInstructionIndex(walker);
UseIndex = LiveIntervals::getUseIndex(UseIndex);
unsigned EndIndex = 0;
@@ -753,14 +754,15 @@
--walker;
// Must check begin() too.
- if (!foundDef && !foundUse)
+ if (!foundDef && !foundUse) {
if (BlockDefs.count(walker))
foundDef = true;
else if (BlockUses.count(walker))
foundUse = true;
else
goto Fallback;
-
+ }
+
unsigned StartIndex = LIs->getInstructionIndex(walker);
StartIndex = foundDef ? LiveIntervals::getDefIndex(StartIndex) :
LiveIntervals::getUseIndex(StartIndex);