diff options
author | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-04-27 18:35:02 +0000 |
---|---|---|
committer | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-04-27 18:35:02 +0000 |
commit | 41beee6575f98a3190d072583788d39cbdbe25f2 (patch) | |
tree | a7090ea6097f6c7a35ee46b04e0e6426dc77ac35 /llvm/lib | |
parent | 03e1647d19647e6c45688f791e26d7a09b62577c (diff) | |
download | bcm5719-llvm-41beee6575f98a3190d072583788d39cbdbe25f2.tar.gz bcm5719-llvm-41beee6575f98a3190d072583788d39cbdbe25f2.zip |
Clean up to avoid compiler warnings for casting away const qualifiers.
Differential Revision: http://reviews.llvm.org/D19598
llvm-svn: 267753
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/LTO/ThinLTOCodeGenerator.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 6764e779e0a..9fb5d66a5ac 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -3337,7 +3337,7 @@ void ModuleBitcodeWriter::writeModuleHash(size_t BlockStartPos) { // Emit the module's hash. // MODULE_CODE_HASH: [5*i32] SHA1 Hasher; - Hasher.update(ArrayRef<uint8_t>((uint8_t *)&(Buffer)[BlockStartPos], + Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&(Buffer)[BlockStartPos], Buffer.size() - BlockStartPos)); auto Hash = Hasher.result(); SmallVector<uint64_t, 20> Vals; diff --git a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp index f4430081dd9..1f1c1b6ebc1 100644 --- a/llvm/lib/LTO/ThinLTOCodeGenerator.cpp +++ b/llvm/lib/LTO/ThinLTOCodeGenerator.cpp @@ -457,9 +457,9 @@ public: // Include the hash for the resolved ODR. for (auto &Entry : ResolvedODR) { - Hasher.update(ArrayRef<uint8_t>((uint8_t *)&Entry.first, + Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first, sizeof(GlobalValue::GUID))); - Hasher.update(ArrayRef<uint8_t>((uint8_t *)&Entry.second, + Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second, sizeof(GlobalValue::LinkageTypes))); } @@ -467,7 +467,7 @@ public: for (auto &Entry : PreservedSymbols) { if (DefinedFunctions.count(Entry)) Hasher.update( - ArrayRef<uint8_t>((uint8_t *)&Entry, sizeof(GlobalValue::GUID))); + ArrayRef<uint8_t>((const uint8_t *)&Entry, sizeof(GlobalValue::GUID))); } sys::path::append(EntryPath, CachePath, toHex(Hasher.result())); |