commit | 6b2d852835e271222e0f1d0d732d8e9846b2c60b | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Sep 10 15:52:34 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Sep 10 15:52:34 2008 +0000 |
tree | 21238b6e1f1c66e7ef47fd7a7d482a0be5ae8f3f | |
parent | 7c9fc2a71f5df425179a708b58c1cf6138ddaa50 [diff] [blame] |
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
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index acc2c05..f47abb3 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -758,6 +758,7 @@ } if (EnableFastISelAbort) assert(0 && "FastISel didn't handle a PHI in a successor"); + break; } // First try normal tablegen-generated "fast" selection.