projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec31826
)
Correct the return type of CreateCleanupEndPad
author
Reid Kleckner
<rnk@google.com>
Thu, 10 Sep 2015 20:07:25 +0000
(20:07 +0000)
committer
Reid Kleckner
<rnk@google.com>
Thu, 10 Sep 2015 20:07:25 +0000
(20:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247331
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/IR/IRBuilder.h
patch
|
blob
|
history
diff --git
a/include/llvm/IR/IRBuilder.h
b/include/llvm/IR/IRBuilder.h
index a515e165c5074a329a2b017019c540ba8a66d5cd..8795addd1a5efc4eb37e2806854083e59ba284d2 100644
(file)
--- a/
include/llvm/IR/IRBuilder.h
+++ b/
include/llvm/IR/IRBuilder.h
@@
-681,8
+681,8
@@
public:
return Insert(CleanupReturnInst::Create(CleanupPad, UnwindBB));
}
- C
atch
EndPadInst *CreateCleanupEndPad(CleanupPadInst *CleanupPad,
- BasicBlock *UnwindBB = nullptr) {
+ C
leanup
EndPadInst *CreateCleanupEndPad(CleanupPadInst *CleanupPad,
+
BasicBlock *UnwindBB = nullptr) {
return Insert(CleanupEndPadInst::Create(CleanupPad, UnwindBB));
}