summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-02-06 21:30:37 +0000
committerBill Wendling <isanbard@gmail.com>2012-02-06 21:30:37 +0000
commit3e9719e1f3a7ba41abacb6e4155cfd71a7d9788f (patch)
treede81c9b9b88a96ab72461ada1150cd94e3421084
parentaa5abe88d6aa445afa593476a665e3ab14b3524c (diff)
downloadllvm-3e9719e1f3a7ba41abacb6e4155cfd71a7d9788f.tar.gz
llvm-3e9719e1f3a7ba41abacb6e4155cfd71a7d9788f.tar.bz2
llvm-3e9719e1f3a7ba41abacb6e4155cfd71a7d9788f.tar.xz
[unwind removal] Don't write out the dead 'unwind' instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149905 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Bitcode/Writer/BitcodeWriter.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp
index 475bb526f9..0e2f0ec783 100644
--- a/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -1184,9 +1184,6 @@ static void WriteInstruction(const Instruction &I, unsigned InstID,
Code = bitc::FUNC_CODE_INST_RESUME;
PushValueAndType(I.getOperand(0), InstID, Vals, VE);
break;
- case Instruction::Unwind:
- Code = bitc::FUNC_CODE_INST_UNWIND;
- break;
case Instruction::Unreachable:
Code = bitc::FUNC_CODE_INST_UNREACHABLE;
AbbrevToUse = FUNCTION_INST_UNREACHABLE_ABBREV;