summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/ExtractFunction.cpp
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2007-12-25 22:16:06 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2007-12-25 22:16:06 +0000
commit194c90ed2a8e74b5a1c5184835f84c572d524dad (patch)
treeb77faaa1cebd7341073265b7f230b82a86a80dc3 /lib/Transforms/IPO/ExtractFunction.cpp
parent64910eeec481c90640a374e27011644217ebb130 (diff)
downloadllvm-194c90ed2a8e74b5a1c5184835f84c572d524dad.tar.gz
llvm-194c90ed2a8e74b5a1c5184835f84c572d524dad.tar.bz2
llvm-194c90ed2a8e74b5a1c5184835f84c572d524dad.tar.xz
Fixing several transforms which would drop the collector attribute
when copying functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/ExtractFunction.cpp')
-rw-r--r--lib/Transforms/IPO/ExtractFunction.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/IPO/ExtractFunction.cpp b/lib/Transforms/IPO/ExtractFunction.cpp
index e5b2d41d52..013fefef98 100644
--- a/lib/Transforms/IPO/ExtractFunction.cpp
+++ b/lib/Transforms/IPO/ExtractFunction.cpp
@@ -96,6 +96,8 @@ namespace {
GlobalValue::ExternalLinkage);
New->setCallingConv(I->getCallingConv());
New->setParamAttrs(I->getParamAttrs());
+ if (I->hasCollector())
+ New->setCollector(I->getCollector());
// If it's not the named function, delete the body of the function
I->dropAllReferences();