From: Kostya Serebryany Date: Mon, 18 Feb 2013 13:47:02 +0000 (+0000) Subject: [asan] revert r175266 as it breaks code with packed structures. supporting long doubl... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=605ff6655b31033dde21e61416751847bd0ee201;p=oota-llvm.git [asan] revert r175266 as it breaks code with packed structures. supporting long double will require a more general solution git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175442 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 5769e942a59..b97e3425bcc 100644 --- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -639,7 +639,7 @@ void AddressSanitizer::instrumentMop(Instruction *I) { Type *OrigTy = cast(OrigPtrTy)->getElementType(); assert(OrigTy->isSized()); - uint32_t TypeSize = TD->getTypeAllocSizeInBits(OrigTy); + uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); if (TypeSize != 8 && TypeSize != 16 && TypeSize != 32 && TypeSize != 64 && TypeSize != 128) { diff --git a/test/Instrumentation/AddressSanitizer/basic.ll b/test/Instrumentation/AddressSanitizer/basic.ll index 746caf704bd..c1b27a59023 100644 --- a/test/Instrumentation/AddressSanitizer/basic.ll +++ b/test/Instrumentation/AddressSanitizer/basic.ll @@ -96,5 +96,5 @@ entry: } ; CHECK: LongDoubleTest -; CHECK: __asan_report_store16 +; CHECK-NOT: __asan_report_store16 ; CHECK: ret void