summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Utils
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-02-25 02:56:01 +0000
committerChad Rosier <mcrosier@apple.com>2012-02-25 02:56:01 +0000
commitfa086f1f00a8b75ab2e2208bd7a028e62f9854db (patch)
treebfdbc32a58e54bc9c061f00c9cb207a17ce036d2 /include/llvm/Transforms/Utils
parentc69cbd0a7431b047dbc4a9758e81bf122926ba0a (diff)
downloadllvm-fa086f1f00a8b75ab2e2208bd7a028e62f9854db.tar.gz
llvm-fa086f1f00a8b75ab2e2208bd7a028e62f9854db.tar.bz2
llvm-fa086f1f00a8b75ab2e2208bd7a028e62f9854db.tar.xz
Add support for disabling llvm.lifetime intrinsics in the AlwaysInliner. These
are optimization hints, but at -O0 we're not optimizing. This becomes a problem when the alwaysinline attribute is abused. rdar://10921594 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils')
-rw-r--r--include/llvm/Transforms/Utils/Cloning.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h
index 16ff7cf120..b7b5d29b32 100644
--- a/include/llvm/Transforms/Utils/Cloning.h
+++ b/include/llvm/Transforms/Utils/Cloning.h
@@ -197,9 +197,9 @@ public:
/// exists in the instruction stream. Similarly this will inline a recursive
/// function by one level.
///
-bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI);
-bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI);
-bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI);
+bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI, bool InsertLifetime = true);
+bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime = true);
+bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime = true);
} // End llvm namespace