[clang] [llvm] Remove -bounds-checking-unique-traps (replace with -fno-sanitize-merge=local-bounds) (PR #120682)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 19 21:19:13 PST 2024
================
@@ -299,7 +303,7 @@ void BoundsCheckingPass::printPipeline(
raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) {
static_cast<PassInfoMixin<BoundsCheckingPass> *>(this)->printPipeline(
OS, MapClassName2PassName);
- switch (Mode) {
+ switch (Options.Mode) {
----------------
vitalybuka wrote:
you need to update this one function as well, this is opposite of parse
https://github.com/llvm/llvm-project/pull/120682
More information about the llvm-commits
mailing list