diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-02-06 21:44:22 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-02-06 21:44:22 +0000 |
commit | 0aef16afd5ff7d1eacc818bec5a69679cce2f115 (patch) | |
tree | 19f36a3f10c26c8f7ef3dd0f15edbcf6f6e4d87c /llvm/lib/VMCore/Instruction.cpp | |
parent | 7c49a0e9e368b49461757b5c2d97044c920c1387 (diff) | |
download | bcm5719-llvm-0aef16afd5ff7d1eacc818bec5a69679cce2f115.tar.gz bcm5719-llvm-0aef16afd5ff7d1eacc818bec5a69679cce2f115.zip |
[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.
llvm-svn: 149906
Diffstat (limited to 'llvm/lib/VMCore/Instruction.cpp')
-rw-r--r-- | llvm/lib/VMCore/Instruction.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp index e0e07099c52..5449714280d 100644 --- a/llvm/lib/VMCore/Instruction.cpp +++ b/llvm/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... |