summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-12-31 18:08:59 +0000
committerDuncan Sands <baldrick@free.fr>2008-12-31 18:08:59 +0000
commitdf128eb477955e2768dc5a5abcf67ee974d45173 (patch)
tree9b113f67ad901cf7f59e0e344969d068a27d5bd0 /llvm/lib/VMCore
parent5347fb20ad76328feaa13603f0e94867f2bb2f4f (diff)
downloadbcm5719-llvm-df128eb477955e2768dc5a5abcf67ee974d45173.tar.gz
bcm5719-llvm-df128eb477955e2768dc5a5abcf67ee974d45173.zip
Don't analyze arguments already marked 'nocapture'.
llvm-svn: 61532
Diffstat (limited to 'llvm/lib/VMCore')
-rw-r--r--llvm/lib/VMCore/Function.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp
index ddc6ace3278..f83fe435cd0 100644
--- a/llvm/lib/VMCore/Function.cpp
+++ b/llvm/lib/VMCore/Function.cpp
@@ -102,6 +102,13 @@ bool Argument::hasNoAliasAttr() const {
return getParent()->paramHasAttr(getArgNo()+1, Attribute::NoAlias);
}
+/// hasNoCaptureAttr - Return true if this argument has the nocapture attribute
+/// on it in its containing function.
+bool Argument::hasNoCaptureAttr() const {
+ if (!isa<PointerType>(getType())) return false;
+ return getParent()->paramHasAttr(getArgNo()+1, Attribute::NoCapture);
+}
+
/// hasSRetAttr - Return true if this argument has the sret attribute on
/// it in its containing function.
bool Argument::hasStructRetAttr() const {
OpenPOWER on IntegriCloud