diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-08-03 20:53:38 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-08-03 20:53:38 +0000 |
commit | 866ec865424e670918a14df2a695691c3372faf0 (patch) | |
tree | eed4ff9a86d78c876b0b831fc22f843e07a33084 /include/llvm/Support | |
parent | 1488f76ed95c88dfcf61c193f0e3b715f23838cc (diff) | |
download | external_llvm-866ec865424e670918a14df2a695691c3372faf0.zip external_llvm-866ec865424e670918a14df2a695691c3372faf0.tar.gz external_llvm-866ec865424e670918a14df2a695691c3372faf0.tar.bz2 |
Remove CreateUnwind from the IRBuillder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/IRBuilder.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index ea90f7a..3ae81c4 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)); } |