From a6ce898dad724380b1444f664f8e422ba1e746d0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 8 Sep 2003 18:54:36 +0000 Subject: [PATCH] Add support for unwind git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8407 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Instruction.cpp | 1 + 1 file changed, 1 insertion(+) 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";