[llvm-branch-commits] [llvm-branch] r136018 - /llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp
Bill Wendling
isanbard at gmail.com
Mon Jul 25 16:57:05 PDT 2011
Author: void
Date: Mon Jul 25 18:57:04 2011
New Revision: 136018
URL: http://llvm.org/viewvc/llvm-project?rev=136018&view=rev
Log:
Supply an opcode name for the landingpad instruction.
Modified:
llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp
Modified: llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp?rev=136018&r1=136017&r2=136018&view=diff
==============================================================================
--- llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp (original)
+++ llvm/branches/exception-handling-rewrite/lib/VMCore/Instruction.cpp Mon Jul 25 18:57:04 2011
@@ -158,6 +158,7 @@
case ShuffleVector: return "shufflevector";
case ExtractValue: return "extractvalue";
case InsertValue: return "insertvalue";
+ case LandingPad: return "landingpad";
default: return "<Invalid operator> ";
}
More information about the llvm-branch-commits
mailing list