Remove CreateUnwind from the IRBuillder.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136811 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2011-08-03 20:53:38 +00:00
parent 1488f76ed9
commit 866ec86542

View File

@ -475,10 +475,6 @@ public:
Name);
}
UnwindInst *CreateUnwind() {
return Insert(new UnwindInst(Context));
}
ResumeInst *CreateResume(Value *Exn) {
return Insert(ResumeInst::Create(Exn));
}