summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAiden Grossman <aidengrossman@google.com>2025-11-17 05:21:54 +0000
committerAiden Grossman <aidengrossman@google.com>2025-11-17 05:21:54 +0000
commita10417d56e504ae7bd64c31d64c6df301021b55e (patch)
treed1fec97227a7ec3239ee2d3b9d8cfb5c11678a4f
parent5399bd9a17f779e5c02b11345ae9e452e668d5e0 (diff)
Created using spr 1.3.7
-rwxr-xr-x.ci/monolithic-linux.sh2
-rwxr-xr-x.ci/monolithic-windows.sh2
-rw-r--r--llvm/utils/TableGen/llvm-tblgen.cpp2
3 files changed, 2 insertions, 4 deletions
diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh
index ca590630bd94..4a8418d7baa8 100755
--- a/.ci/monolithic-linux.sh
+++ b/.ci/monolithic-linux.sh
@@ -65,7 +65,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
start-group "ninja"
# Targets are not escaped as they are passed as separate arguments.
-ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log
+ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log
cp ${BUILD_DIR}/.ninja_log ninja.ninja_log
if [[ "${runtime_targets}" != "" ]]; then
diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh
index 51f97cf894a4..7b926b87f362 100755
--- a/.ci/monolithic-windows.sh
+++ b/.ci/monolithic-windows.sh
@@ -52,7 +52,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
start-group "ninja"
# Targets are not escaped as they are passed as separate arguments.
-ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log
+ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log
cp ${BUILD_DIR}/.ninja_log ninja.ninja_log
if [[ "${runtimes_targets}" != "" ]]; then
diff --git a/llvm/utils/TableGen/llvm-tblgen.cpp b/llvm/utils/TableGen/llvm-tblgen.cpp
index cb1a1f44d456..a38382472a99 100644
--- a/llvm/utils/TableGen/llvm-tblgen.cpp
+++ b/llvm/utils/TableGen/llvm-tblgen.cpp
@@ -12,8 +12,6 @@
#include "Basic/TableGen.h"
-#error compilation failure
-
/// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen.
/// The indirection to tblgen_main exists to ensure that the static variables
/// for the llvm::cl:: mechanism are linked into both executables.