mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-14 12:01:21 +00:00
Clean up to avoid compiler warnings for casting away const qualifiers.
Differential Revision: http://reviews.llvm.org/D19598 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267753 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8d960539d9
commit
09aedbd06b
@ -3337,7 +3337,7 @@ void ModuleBitcodeWriter::writeModuleHash(size_t BlockStartPos) {
|
|||||||
// Emit the module's hash.
|
// Emit the module's hash.
|
||||||
// MODULE_CODE_HASH: [5*i32]
|
// MODULE_CODE_HASH: [5*i32]
|
||||||
SHA1 Hasher;
|
SHA1 Hasher;
|
||||||
Hasher.update(ArrayRef<uint8_t>((uint8_t *)&(Buffer)[BlockStartPos],
|
Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&(Buffer)[BlockStartPos],
|
||||||
Buffer.size() - BlockStartPos));
|
Buffer.size() - BlockStartPos));
|
||||||
auto Hash = Hasher.result();
|
auto Hash = Hasher.result();
|
||||||
SmallVector<uint64_t, 20> Vals;
|
SmallVector<uint64_t, 20> Vals;
|
||||||
|
@ -457,9 +457,9 @@ public:
|
|||||||
|
|
||||||
// Include the hash for the resolved ODR.
|
// Include the hash for the resolved ODR.
|
||||||
for (auto &Entry : ResolvedODR) {
|
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)));
|
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)));
|
sizeof(GlobalValue::LinkageTypes)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -467,7 +467,7 @@ public:
|
|||||||
for (auto &Entry : PreservedSymbols) {
|
for (auto &Entry : PreservedSymbols) {
|
||||||
if (DefinedFunctions.count(Entry))
|
if (DefinedFunctions.count(Entry))
|
||||||
Hasher.update(
|
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()));
|
sys::path::append(EntryPath, CachePath, toHex(Hasher.result()));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user