Remove CreateUnwind from the IRBuillder.
authorBill Wendling <isanbard@gmail.com>
Wed, 3 Aug 2011 20:53:38 +0000 (20:53 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 3 Aug 2011 20:53:38 +0000 (20:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136811 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/IRBuilder.h

index ea90f7a552663801718755d22e51dfc67c0bfdc9..3ae81c4a8d0a35ac9371822f54ea787bdffd1d49 100644 (file)
@@ -475,10 +475,6 @@ public:
                   Name);
   }
 
-  UnwindInst *CreateUnwind() {
-    return Insert(new UnwindInst(Context));
-  }
-
   ResumeInst *CreateResume(Value *Exn) {
     return Insert(ResumeInst::Create(Exn));
   }