diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:54:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:54:36 +0000 |
commit | a6ce898dad724380b1444f664f8e422ba1e746d0 (patch) | |
tree | 955da5c5b6ea4898f2093d0b21f11f5d8a3ca23f /lib/VMCore | |
parent | 3cd5c1d7f19c83e21a34ef1373feb8933e26c4d8 (diff) | |
download | external_llvm-a6ce898dad724380b1444f664f8e422ba1e746d0.zip external_llvm-a6ce898dad724380b1444f664f8e422ba1e746d0.tar.gz external_llvm-a6ce898dad724380b1444f664f8e422ba1e746d0.tar.bz2 |
Add support for unwind
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Instruction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 1a53642..122e0f7 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"; |