[PATCH] D12979: Avoid inlining in exception handling context
Jun Bum Lim via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 24 11:26:38 PDT 2015
junbuml added inline comments.
================
Comment at: include/llvm/IR/CallSite.h:274
@@ -273,3 +273,3 @@
}
- void setIsNoInline(bool Value = true) {
- CALLSITE_DELEGATE_SETTER(setIsNoInline(Value));
+ void setIsNoInline() {
+ CALLSITE_DELEGATE_SETTER(setIsNoInline());
----------------
hfinkel wrote:
> Why are you changing this?
Both CallInst and InvokeInst have only setIsNoInline(); there is no setIsNoInline(bool) in both CallInst and InvokeInst. I believe it was bug.
http://reviews.llvm.org/D12979
More information about the llvm-commits
mailing list