summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-04-07 13:39:11 +0000
committerDuncan Sands <baldrick@free.fr>2008-04-07 13:39:11 +0000
commita8ff6ca2e3afe93b68fca06e7081acf5c7d30862 (patch)
tree85a53aca7fb7d5a01ae78eee4d1ab3c879bf0739 /llvm/lib/VMCore
parent51f532f92d3f826ca59559d7aabdb4b7bef4980e (diff)
downloadbcm5719-llvm-a8ff6ca2e3afe93b68fca06e7081acf5c7d30862.tar.gz
bcm5719-llvm-a8ff6ca2e3afe93b68fca06e7081acf5c7d30862.zip
Make sure that intrinsics automagically get the
right parameter attributes no matter how they are obtained. llvm-svn: 49335
Diffstat (limited to 'llvm/lib/VMCore')
-rw-r--r--llvm/lib/VMCore/Function.cpp8
-rw-r--r--llvm/lib/VMCore/Verifier.cpp4
2 files changed, 9 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp
index 302eff30ff3..6571f10be5d 100644
--- a/llvm/lib/VMCore/Function.cpp
+++ b/llvm/lib/VMCore/Function.cpp
@@ -160,6 +160,10 @@ Function::Function(const FunctionType *Ty, LinkageTypes Linkage,
if (ParentModule)
ParentModule->getFunctionList().push_back(this);
+
+ // Ensure intrinsics have the right parameter attributes.
+ if (unsigned IID = getIntrinsicID(true))
+ setParamAttrs(Intrinsic::getParamAttrs(Intrinsic::ID(IID)));
}
Function::~Function() {
@@ -328,11 +332,9 @@ Function *Intrinsic::getDeclaration(Module *M, ID id, const Type **Tys,
unsigned numTys) {
// There can never be multiple globals with the same name of different types,
// because intrinsics must be a specific type.
- Function *F =
+ return
cast<Function>(M->getOrInsertFunction(getName(id, Tys, numTys),
getType(id, Tys, numTys)));
- F->setParamAttrs(getParamAttrs(id));
- return F;
}
Value *IntrinsicInst::StripPointerCasts(Value *Ptr) {
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp
index 7ec0cf3a458..5b8aa7691be 100644
--- a/llvm/lib/VMCore/Verifier.cpp
+++ b/llvm/lib/VMCore/Verifier.cpp
@@ -1452,6 +1452,10 @@ void Verifier::VerifyIntrinsicPrototype(Intrinsic::ID ID,
F->getName().substr(Name.length()) + "'. It should be '" +
Suffix + "'", F);
}
+
+ // Check parameter attributes.
+ Assert1(F->getParamAttrs() == Intrinsic::getParamAttrs(ID),
+ "Intrinsic has wrong parameter attributes!", F);
}
OpenPOWER on IntegriCloud