diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index a51bd7e41c8..b43b9e5face 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -454,7 +454,7 @@ bool AddressSanitizer::insertGlobalRedzones(Module &M) {      GlobalVariable *G = GlobalsToChange[i];      PointerType *PtrTy = cast<PointerType>(G->getType());      Type *Ty = PtrTy->getElementType(); -    uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8; +    uint64_t SizeInBytes = TD->getTypeAllocSize(Ty);      uint64_t RightRedzoneSize = RedzoneSize +          (RedzoneSize - (SizeInBytes % RedzoneSize));      Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); | 

