From 866ec865424e670918a14df2a695691c3372faf0 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 3 Aug 2011 20:53:38 +0000 Subject: [PATCH] Remove CreateUnwind from the IRBuillder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136811 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/IRBuilder.h | 4 ---- 1 file changed, 4 deletions(-) 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)); }