summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-08-03 20:53:38 +0000
committerBill Wendling <isanbard@gmail.com>2011-08-03 20:53:38 +0000
commit866ec865424e670918a14df2a695691c3372faf0 (patch)
treeeed4ff9a86d78c876b0b831fc22f843e07a33084 /include/llvm/Support
parent1488f76ed95c88dfcf61c193f0e3b715f23838cc (diff)
downloadllvm-866ec865424e670918a14df2a695691c3372faf0.tar.gz
llvm-866ec865424e670918a14df2a695691c3372faf0.tar.bz2
llvm-866ec865424e670918a14df2a695691c3372faf0.tar.xz
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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h
index ea90f7a552..3ae81c4a8d 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));
}