From: Bill Wendling Date: Wed, 3 Aug 2011 20:53:38 +0000 (+0000) Subject: Remove CreateUnwind from the IRBuillder. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=866ec865424e670918a14df2a695691c3372faf0;p=oota-llvm.git Remove CreateUnwind from the IRBuillder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136811 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index ea90f7a5526..3ae81c4a8d0 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -475,10 +475,6 @@ public: Name); } - UnwindInst *CreateUnwind() { - return Insert(new UnwindInst(Context)); - } - ResumeInst *CreateResume(Value *Exn) { return Insert(ResumeInst::Create(Exn)); }