https://github.com/JustinStitt approved this pull request.
LGTM! FWIW, here's a test file that does not trip the sanitizer before this PR and _does_ trip after the PR: ```c #include <stdio.h> int main(int argc, char **argv) { void *p = NULL; printf("p: %p\n", p); p = p - argc; printf("p: %p\n", p); return 0; } ``` https://github.com/llvm/llvm-project/pull/67772 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits