diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-01-17 04:43:56 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-01-17 04:43:56 +0000 |
commit | fdebc38523b397743973ff6a2d2e93b112dd96e5 (patch) | |
tree | 03c93b31dc3e434c640e0180231461400e390529 /lib/VMCore/Instruction.cpp | |
parent | 21506061ef031a01fce5cc1781f30780fbecb59b (diff) |
Remove unreachable code. (replace with llvm_unreachable to help GCC where necessary)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instruction.cpp')
-rw-r--r-- | lib/VMCore/Instruction.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 8c8fbf9acd..e0e07099c5 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -166,8 +166,6 @@ const char *Instruction::getOpcodeName(unsigned OpCode) { default: return "<Invalid operator> "; } - - return 0; } /// isIdenticalTo - Return true if the specified instruction is exactly |