[Lldb-commits] [lldb] r204751 - Added a missing "break" to avoid falling through

Sean Callanan scallanan at apple.com
Tue Mar 25 12:47:07 PDT 2014


Author: spyffe
Date: Tue Mar 25 14:47:07 2014
New Revision: 204751

URL: http://llvm.org/viewvc/llvm-project?rev=204751&view=rev
Log:
Added a missing "break" to avoid falling through
when other cases get added.

Modified:
    lldb/trunk/source/Expression/IRInterpreter.cpp

Modified: lldb/trunk/source/Expression/IRInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/IRInterpreter.cpp?rev=204751&r1=204750&r2=204751&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRInterpreter.cpp (original)
+++ lldb/trunk/source/Expression/IRInterpreter.cpp Tue Mar 25 14:47:07 2014
@@ -516,6 +516,7 @@ IRInterpreter::CanInterpret (llvm::Modul
                         return false;
                     }
                 }
+                break;
             case Instruction::GetElementPtr:
                 break;
             case Instruction::ICmp:





More information about the lldb-commits mailing list