diff options
author | Pete Cooper <peter_cooper@apple.com> | 2015-05-20 17:17:45 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2015-05-20 17:17:45 +0000 |
commit | 2f1637ad8596fb4097a17e7ab6054c332104abd6 (patch) | |
tree | 08978e067d1652924451cbd6cd0a4bc55e38b2e8 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 9e1d335697bcc5ac02e4c097a03c3478b76f7ec6 (diff) | |
download | bcm5719-llvm-2f1637ad8596fb4097a17e7ab6054c332104abd6.tar.gz bcm5719-llvm-2f1637ad8596fb4097a17e7ab6054c332104abd6.zip |
Use Intrinsic::ID instead of unsigned. NFC.
This is after LLVM r237810 which made Function::getIntrinsicID() return an Intrinsic::ID.
llvm-svn: 237811
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 7c091923b31..400506129e6 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -859,11 +859,10 @@ static void setLinkageAndVisibilityForGV(llvm::GlobalValue *GV, void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, llvm::Function *F, bool IsIncompleteFunction, bool IsThunk) { - if (unsigned IID = F->getIntrinsicID()) { + if (llvm::Intrinsic::ID IID = F->getIntrinsicID()) { // If this is an intrinsic function, set the function's attributes // to the intrinsic's attributes. - F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), - (llvm::Intrinsic::ID)IID)); + F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), IID)); return; } |