summaryrefslogtreecommitdiff
path: root/lib/VMCore/Instruction.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-02-06 21:44:22 +0000
committerBill Wendling <isanbard@gmail.com>2012-02-06 21:44:22 +0000
commit8833ef03b9ceaa52063116819fff8b3d16fd8933 (patch)
tree5a1fa61f4da27040c81aad39127be94215579b34 /lib/VMCore/Instruction.cpp
parent3e9719e1f3a7ba41abacb6e4155cfd71a7d9788f (diff)
downloadllvm-8833ef03b9ceaa52063116819fff8b3d16fd8933.tar.gz
llvm-8833ef03b9ceaa52063116819fff8b3d16fd8933.tar.bz2
llvm-8833ef03b9ceaa52063116819fff8b3d16fd8933.tar.xz
[unwind removal] Remove all of the code for the dead 'unwind' instruction. There
were no 'unwind' instructions being generated before this, so this is in effect a no-op. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instruction.cpp')
-rw-r--r--lib/VMCore/Instruction.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp
index e0e07099c5..5449714280 100644
--- a/lib/VMCore/Instruction.cpp
+++ b/lib/VMCore/Instruction.cpp
@@ -102,7 +102,6 @@ const char *Instruction::getOpcodeName(unsigned OpCode) {
case IndirectBr: return "indirectbr";
case Invoke: return "invoke";
case Resume: return "resume";
- case Unwind: return "unwind";
case Unreachable: return "unreachable";
// Standard binary operators...