DNS: Try banning using intel-hosted clang
diff --git a/engine/src/build/toolchain/mac/BUILD.gn b/engine/src/build/toolchain/mac/BUILD.gn
index a3dfd6f..15821c3 100644
--- a/engine/src/build/toolchain/mac/BUILD.gn
+++ b/engine/src/build/toolchain/mac/BUILD.gn
@@ -54,13 +54,9 @@
             root_build_dir),
         "trim scope")
 
-if (host_cpu == "arm64") {
-  rebased_clang_dir =
-      rebase_path("$buildtools_path/mac-arm64/clang/bin", root_build_dir)
-} else {
-  rebased_clang_dir =
-      rebase_path("$buildtools_path/mac-x64/clang/bin", root_build_dir)
-}
+assert(host_cpu == "arm64")
+rebased_clang_dir = 
+    rebase_path("$buildtools_path/mac-arm64/clang/bin", root_build_dir)
 
 if (use_ccache) {
   # ccache only supports compilation, not linking.