Skip to content

Commit 3752b2a

Browse files
test
Created using spr 1.3.7
1 parent a5190d4 commit 3752b2a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.ci/monolithic-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
6565
start-group "ninja"
6666

6767
# Targets are not escaped as they are passed as separate arguments.
68-
ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log
68+
ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log
6969
cp ${BUILD_DIR}/.ninja_log ninja.ninja_log
7070

7171
if [[ "${runtime_targets}" != "" ]]; then

.ci/monolithic-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
5252
start-group "ninja"
5353

5454
# Targets are not escaped as they are passed as separate arguments.
55-
ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log
55+
ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log
5656
cp ${BUILD_DIR}/.ninja_log ninja.ninja_log
5757

5858
if [[ "${runtimes_targets}" != "" ]]; then

llvm/utils/TableGen/llvm-tblgen.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
#include "Basic/TableGen.h"
1414

15+
#error bad
16+
1517
/// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen.
1618
/// The indirection to tblgen_main exists to ensure that the static variables
1719
/// for the llvm::cl:: mechanism are linked into both executables.

0 commit comments

Comments
 (0)