summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/IRInterpreter.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2014-03-25 19:47:07 +0000
committerSean Callanan <scallanan@apple.com>2014-03-25 19:47:07 +0000
commit9287289d66cd7c44d66916e9a1ff918790649bfe (patch)
tree12c3853e3bbcfc58d547c66500386f28e0770087 /lldb/source/Expression/IRInterpreter.cpp
parent576a4374b75e5c448233078e287a8ad9abd0b973 (diff)
downloadbcm5719-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.cpp1
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:
OpenPOWER on IntegriCloud