[llvm-commits] [llvm] r136811 - /llvm/trunk/include/llvm/Support/IRBuilder.h
Bill Wendling
isanbard at gmail.com
Wed Aug 3 13:53:38 PDT 2011
Author: void
Date: Wed Aug 3 15:53:38 2011
New Revision: 136811
URL: http://llvm.org/viewvc/llvm-project?rev=136811&view=rev
Log:
Remove CreateUnwind from the IRBuillder.
Modified:
llvm/trunk/include/llvm/Support/IRBuilder.h
Modified: llvm/trunk/include/llvm/Support/IRBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/IRBuilder.h?rev=136811&r1=136810&r2=136811&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/IRBuilder.h (original)
+++ llvm/trunk/include/llvm/Support/IRBuilder.h Wed Aug 3 15:53:38 2011
@@ -475,10 +475,6 @@
Name);
}
- UnwindInst *CreateUnwind() {
- return Insert(new UnwindInst(Context));
- }
-
ResumeInst *CreateResume(Value *Exn) {
return Insert(ResumeInst::Create(Exn));
}
More information about the llvm-commits
mailing list