diff options
author | Sean Callanan <scallanan@apple.com> | 2014-03-25 19:47:07 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2014-03-25 19:47:07 +0000 |
commit | 9287289d66cd7c44d66916e9a1ff918790649bfe (patch) | |
tree | 12c3853e3bbcfc58d547c66500386f28e0770087 /lldb/source/Expression/IRInterpreter.cpp | |
parent | 576a4374b75e5c448233078e287a8ad9abd0b973 (diff) | |
download | bcm5719-llvm-9287289d66cd7c44d66916e9a1ff918790649bfe.tar.gz bcm5719-llvm-9287289d66cd7c44d66916e9a1ff918790649bfe.zip |
Added a missing "break" to avoid falling through
when other cases get added.
llvm-svn: 204751
Diffstat (limited to 'lldb/source/Expression/IRInterpreter.cpp')
-rw-r--r-- | lldb/source/Expression/IRInterpreter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Expression/IRInterpreter.cpp b/lldb/source/Expression/IRInterpreter.cpp index 082e886188d..5552cb3d5d7 100644 --- a/lldb/source/Expression/IRInterpreter.cpp +++ b/lldb/source/Expression/IRInterpreter.cpp @@ -516,6 +516,7 @@ IRInterpreter::CanInterpret (llvm::Module &module, return false; } } + break; case Instruction::GetElementPtr: break; case Instruction::ICmp: |