mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[msan] Replace 8 by kShadowTLSAlignment
Reviewed-by: eugenis Differential Revision: https://reviews.llvm.org/D92275
This commit is contained in:
parent
246910a595
commit
063bca0cca
@ -3708,7 +3708,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
|
||||
(void)Store;
|
||||
assert(Size != 0 && Store != nullptr);
|
||||
LLVM_DEBUG(dbgs() << " Param:" << *Store << "\n");
|
||||
ArgOffset += alignTo(Size, 8);
|
||||
ArgOffset += alignTo(Size, kShadowTLSAlignment);
|
||||
}
|
||||
LLVM_DEBUG(dbgs() << " done with call args\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user