[Fuchsia] Don't fail for unknown architectures
authorPetr Hosek <phosek@google.com>
Tue, 26 Nov 2019 22:56:31 +0000 (14:56 -0800)
committerPetr Hosek <phosek@google.com>
Wed, 27 Nov 2019 03:16:40 +0000 (19:16 -0800)
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

clang/lib/Driver/ToolChains/Fuchsia.cpp

index 9bea0b1..4c5d400 100644 (file)
@@ -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;
 }