[PATCH] D102288: [HWASan] Add aliasing flag and enable HWASan to use it.

2021-05-14 Thread Matt Morehouse via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGb7d1ab75cf47: [HWASan] Add aliasing flag and enable HWASan to use it. (authored by morehouse). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102288/new/

[PATCH] D102288: [HWASan] Add aliasing flag and enable HWASan to use it.

2021-05-13 Thread Matt Morehouse via Phabricator via cfe-commits
morehouse updated this revision to Diff 345317. morehouse marked an inline comment as done. morehouse added a comment. - s/ENABLE_ALIASES/HWASAN_ENABLE_ALIASES Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102288/new/

[PATCH] D102288: [HWASan] Add aliasing flag and enable HWASan to use it.

2021-05-13 Thread Vitaly Buka via Phabricator via cfe-commits
vitalybuka accepted this revision. vitalybuka added a comment. This revision is now accepted and ready to land. LGTM Comment at: compiler-rt/test/hwasan/lit.site.cfg.py.in:10 +# Whether to use -mlam or not. +config.enable_aliases = lit_config.params.get("ENABLE_ALIASES",

[PATCH] D102288: [HWASan] Add aliasing flag and enable HWASan to use it.

2021-05-13 Thread Matt Morehouse via Phabricator via cfe-commits
morehouse updated this revision to Diff 345295. morehouse marked an inline comment as done. morehouse added a comment. - Rename flag to -fsanitize-hwaddress-experimental-aliasing. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102288/new/

[PATCH] D102288: [HWASan] Add aliasing flag and enable HWASan to use it.

2021-05-13 Thread Vitaly Buka via Phabricator via cfe-commits
vitalybuka added inline comments. Comment at: clang/include/clang/Driver/Options.td:1551 +def fexperimental_sanitize_hwaddress_aliasing + : Flag<["-"], "fexperimental-sanitize-hwaddress-aliasing">, +Group, Please switch to