[PATCH] D145175: [ASAN] Support memory checks on scalable vector typed loads and stores
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 2 12:00:59 PST 2023
craig.topper added inline comments.
================
Comment at: llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp:1425
+ if (!TypeStoreSize.isScalable() &&
+ (TypeStoreSize == 8 || TypeStoreSize == 16 || TypeStoreSize == 32 ||
+ TypeStoreSize == 64 || TypeStoreSize == 128) &&
----------------
Should we call TypeStoreSize.getFixedValue() while we're here instead of using implicit conversion to unsigned?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145175/new/
https://reviews.llvm.org/D145175
More information about the llvm-commits
mailing list