[PATCH] D27625: [asan] Don't skip instrumentation of masked load/store unless we've seen a full load/store on that pointer.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 11 13:38:44 PST 2016


RKSimon added inline comments.


================
Comment at: lib/Transforms/Instrumentation/AddressSanitizer.cpp:2074
+            continue;  // We've seen this temp in the current BB.
+        }
+        if (ClOpt && ClOptSameTemp && !MaybeMask) {
----------------
Remove the braces. Any reason why you don't want to merge the if conditions?


https://reviews.llvm.org/D27625





More information about the llvm-commits mailing list