[llvm-commits] [llvm] r56057 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Dan Gohman gohman at apple.com
Wed Sep 10 08:52:37 PDT 2008


Author: djg
Date: Wed Sep 10 10:52:34 2008
New Revision: 56057

URL: http://llvm.org/viewvc/llvm-project?rev=56057&view=rev
Log:
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.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp?rev=56057&r1=56056&r2=56057&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Wed Sep 10 10:52:34 2008
@@ -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.





More information about the llvm-commits mailing list