summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-02-06 20:50:27 +0000
committerBill Wendling <isanbard@gmail.com>2012-02-06 20:50:27 +0000
commite185fada9bed375b7d73cfc675a466f0da843191 (patch)
tree867d09de297761bb33756abc47a9bcad1ca935bb /lib/AsmParser/LLParser.cpp
parent7d5a289f2d7d75c29df4c17856ab54dd28dec508 (diff)
downloadllvm-e185fada9bed375b7d73cfc675a466f0da843191.tar.gz
llvm-e185fada9bed375b7d73cfc675a466f0da843191.tar.bz2
llvm-e185fada9bed375b7d73cfc675a466f0da843191.tar.xz
[unwind removal] Remove the 'unwind' instruction parsing bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149897 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r--lib/AsmParser/LLParser.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index e9e16abddb..81bad631cf 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -2883,7 +2883,6 @@ int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
switch (Token) {
default: return Error(Loc, "expected instruction opcode");
// Terminator Instructions.
- case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
case lltok::kw_br: return ParseBr(Inst, PFS);