This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-arm-mainline-allyesconfig in repository toolchain/ci/llvm-project.
from 0f56ce0fb207 [DebugInfo][InstrRef] Avoid a crash from mixed variable lo [...] adds 571c7d8f6dae Reland "[llvm][AArch64] Insert "bti j" after call to setjmp" adds 0fbe860711be [Clang][Fortify] drop inline decls when redeclared new b83c4a2dc0fb [x86] Fix infinite loop inside DAG combiner with lzcnt feature. new 9a3e81e1f91f [InstCombine] canonicalize select with signbit test
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang/docs/ClangCommandLineReference.rst | 2 +- clang/docs/ReleaseNotes.rst | 6 +- clang/include/clang/Driver/Options.td | 2 +- clang/lib/CodeGen/CGExpr.cpp | 14 +++- clang/lib/Driver/ToolChains/Arch/AArch64.cpp | 3 + .../CodeGen/fread-inline-builtin-late-redecl.c | 26 +++++++ llvm/lib/Target/AArch64/AArch64.td | 5 ++ .../Target/AArch64/AArch64ExpandPseudoInsts.cpp | 34 +++++++++ llvm/lib/Target/AArch64/AArch64FastISel.cpp | 8 +++ llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 10 ++- llvm/lib/Target/AArch64/AArch64ISelLowering.h | 2 + llvm/lib/Target/AArch64/AArch64InstrInfo.td | 11 +++ llvm/lib/Target/AArch64/AArch64Subtarget.h | 6 ++ .../Target/AArch64/GISel/AArch64CallLowering.cpp | 12 +++- llvm/lib/Target/X86/X86ISelLowering.cpp | 21 +++--- .../Transforms/InstCombine/InstCombineSelect.cpp | 17 +++++ .../CodeGen/AArch64/setjmp-bti-no-enforcement.ll | 51 +++++++++++++ llvm/test/CodeGen/AArch64/setjmp-bti-outliner.ll | 83 ++++++++++++++++++++++ llvm/test/CodeGen/AArch64/setjmp-bti.ll | 55 ++++++++++++++ llvm/test/CodeGen/X86/lzcnt-zext-cmp.ll | 34 +++++++++ llvm/test/Transforms/InstCombine/ashr-lshr.ll | 80 ++++++++++----------- llvm/test/Transforms/InstCombine/logical-select.ll | 4 +- .../Transforms/InstCombine/truncating-saturate.ll | 4 +- 23 files changed, 425 insertions(+), 65 deletions(-) create mode 100644 clang/test/CodeGen/fread-inline-builtin-late-redecl.c create mode 100644 llvm/test/CodeGen/AArch64/setjmp-bti-no-enforcement.ll create mode 100644 llvm/test/CodeGen/AArch64/setjmp-bti-outliner.ll create mode 100644 llvm/test/CodeGen/AArch64/setjmp-bti.ll