summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-09-10 15:52:34 +0000
committerDan Gohman <gohman@apple.com>2008-09-10 15:52:34 +0000
commit3ee25dca5b2f321103e879fb125b7870683e7085 (patch)
tree21238b6e1f1c66e7ef47fd7a7d482a0be5ae8f3f /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent36a5bf8fd8b32fe749c207f8809ae7d4f66eeb03 (diff)
downloadllvm-3ee25dca5b2f321103e879fb125b7870683e7085.tar.gz
llvm-3ee25dca5b2f321103e879fb125b7870683e7085.tar.bz2
llvm-3ee25dca5b2f321103e879fb125b7870683e7085.tar.xz
Add a break statement that I accidentally deleted when
I shuffled the fast-isel command-line options around. This fixes a bunch of fast-isel failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index acc2c050a0..f47abb3c30 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -758,6 +758,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn, MachineFunction &MF) {
}
if (EnableFastISelAbort)
assert(0 && "FastISel didn't handle a PHI in a successor");
+ break;
}
// First try normal tablegen-generated "fast" selection.