Commit f7aeca45 authored by Petr Hosek's avatar Petr Hosek
Browse files

[Fuchsia] Don't fail for unknown architectures

When selecting the set of default sanitizers, don't fail for unknown
architectures. This may be the case e.g. with x86_64-unknown-fuchsia
-m32 target that's used to build the bootloader.

Differential Revision: https://reviews.llvm.org/D70747
parent ded24904
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -351,10 +351,9 @@ SanitizerMask Fuchsia::getDefaultSanitizers() const {
  case llvm::Triple::x86_64:
    Res |= SanitizerKind::SafeStack;
    break;
  case llvm::Triple::riscv64:
    break;
  default:
    llvm_unreachable("invalid architecture");
    // TODO: Enable SafeStack on RISC-V once tested.
    break;
  }
  return Res;
}