Skip to content

Commit 8218827

Browse files
committed
scripts/min-tool-version.sh: raise minimum clang version to 14.0.0 for s390
Before version 14.0.0 llvm's integrated assembler fails to handle some displacement variants: arch/s390/purgatory/head.S:108:10: error: invalid operand for instruction lg %r11,kernel_type-.base_crash(%r13) Instead of working around this and given that this is already fixed raise the minimum clang version from 13.0.0 to 14.0.0. Acked-by: Nick Desaulniers <ndesaulniers@google.com> Tested-by: Nathan Chancellor <nathan@kernel.org> Tested-by: Nick Desaulniers <ndesaulniers@google.com> Link: https://reviews.llvm.org/D113341 Link: https://lore.kernel.org/r/20220511120532.2228616-9-hca@linux.ibm.com Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent bb31074 commit 8218827

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/min-tool-version.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ icc)
2424
echo 16.0.3
2525
;;
2626
llvm)
27-
# https://lore.kernel.org/r/YMtib5hKVyNknZt3@osiris/
2827
if [ "$SRCARCH" = s390 ]; then
29-
echo 13.0.0
28+
echo 14.0.0
3029
else
3130
echo 11.0.0
3231
fi

0 commit comments

Comments
 (0)