diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-01-22 19:29:41 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-01-22 19:29:41 +0000 |
commit | 98bfc82c39dacb76ad9422e84d5a98ccec4d6496 (patch) | |
tree | 7c1fa1afef532b26124f89aace55635342f11034 /clang/lib | |
parent | 34461a626e4fcc72e2facf7dedf8c84cf13e39d2 (diff) | |
download | bcm5719-llvm-98bfc82c39dacb76ad9422e84d5a98ccec4d6496.tar.gz bcm5719-llvm-98bfc82c39dacb76ad9422e84d5a98ccec4d6496.zip |
Fix the build by using the correct suffix for 64 bit literals
llvm-svn: 258531
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 635a2d06a24..efacc35d149 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -1742,7 +1742,7 @@ CGDebugInfo::getOrCreateModuleRef(ExternalASTSource::ASTSourceDescriptor Mod, if (CreateSkeletonCU && IsRootModule) { // PCH files don't have a signature field in the control block, // but LLVM detects skeleton CUs by looking for a non-zero DWO id. - uint64_t Signature = Mod.getSignature() ? Mod.getSignature() : ~1UL; + uint64_t Signature = Mod.getSignature() ? Mod.getSignature() : ~1ULL; llvm::DIBuilder DIB(CGM.getModule()); DIB.createCompileUnit(TheCU->getSourceLanguage(), Mod.getModuleName(), Mod.getPath(), TheCU->getProducer(), true, diff --git a/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp b/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp index f20489275b2..0e3aa61314e 100644 --- a/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp +++ b/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp @@ -222,7 +222,7 @@ public: // PCH files don't have a signature field in the control block, // but LLVM detects DWO CUs by looking for a non-zero DWO id. - uint64_t Signature = Buffer->Signature ? Buffer->Signature : ~1UL; + uint64_t Signature = Buffer->Signature ? Buffer->Signature : ~1ULL; Builder->getModuleDebugInfo()->setDwoId(Signature); // Finalize the Builder. |