From: Chris Lattner Date: Mon, 8 Sep 2003 18:54:36 +0000 (+0000) Subject: Add support for unwind X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a6ce898dad724380b1444f664f8e422ba1e746d0;p=oota-llvm.git Add support for unwind git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8407 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 1a536427349..122e0f78999 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -56,6 +56,7 @@ const char *Instruction::getOpcodeName(unsigned OpCode) { case Br: return "br"; case Switch: return "switch"; case Invoke: return "invoke"; + case Unwind: return "unwind"; // Standard binary operators... case Add: return "add";