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 eaae6dfc545 [CodeGen] fix inline builtin-related breakage from D78162 adds aba4e3fa3bd [lldb] [PECOFF] Only use PECallFrameInfo on the one support [...] adds 964da818556 PR45350: Handle unsized array CXXConstructExprs in constant [...] adds bf1f5caf202 CET for Exception Handle adds 4a89d0de5e9 Enable IBT(Indirect Branch Tracking) in JIT with CET(Contro [...] adds bace7beb530 Backport 4878aa36d4a [ValueLattice] Add new state for undef [...] adds d9160ff3e92 [globalopt] Don't emit DWARF fragments for members of a str [...] new 4b2f37b2202 [clang] fix undefined behaviour in RawComment::getFormattedText()
The 1 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/lib/AST/ExprConstant.cpp | 23 +- clang/lib/AST/RawCommentList.cpp | 2 +- clang/test/SemaCXX/constant-expression-cxx2a.cpp | 20 ++ .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 3 + llvm/include/llvm/Analysis/ValueLattice.h | 162 +++++---- llvm/lib/Analysis/LazyValueInfo.cpp | 12 +- llvm/lib/Analysis/ValueLattice.cpp | 6 +- llvm/lib/Target/X86/X86IndirectBranchTracking.cpp | 34 +- llvm/lib/Target/X86/X86TargetMachine.cpp | 2 +- llvm/lib/Target/X86/X86TargetMachine.h | 4 + llvm/lib/Transforms/IPO/GlobalOpt.cpp | 16 +- .../X86/indirect-branch-tracking-cm-lager.ll | 36 ++ .../CodeGen/X86/indirect-branch-tracking-eh.ll | 31 ++ .../Generic/global-sra-struct-zero-length.ll | 69 ++++ .../merge-range-and-undef.ll | 299 ++++++++++++++++ llvm/test/Transforms/JumpThreading/ne-undef.ll | 61 ++++ llvm/test/Transforms/SCCP/float-phis.ll | 26 ++ llvm/test/Transforms/SCCP/int-phis.ll | 61 ++++ llvm/test/Transforms/SCCP/range-and-ip.ll | 47 +++ llvm/test/Transforms/SCCP/range-and.ll | 395 +++++++++++++++++++++ llvm/unittests/Analysis/ValueLatticeTest.cpp | 17 + 21 files changed, 1241 insertions(+), 85 deletions(-) create mode 100644 llvm/test/CodeGen/X86/indirect-branch-tracking-cm-lager.ll create mode 100644 llvm/test/CodeGen/X86/indirect-branch-tracking-eh.ll create mode 100644 llvm/test/DebugInfo/Generic/global-sra-struct-zero-length.ll create mode 100644 llvm/test/Transforms/CorrelatedValuePropagation/merge-range-and [...] create mode 100644 llvm/test/Transforms/JumpThreading/ne-undef.ll create mode 100644 llvm/test/Transforms/SCCP/float-phis.ll create mode 100644 llvm/test/Transforms/SCCP/int-phis.ll create mode 100644 llvm/test/Transforms/SCCP/range-and-ip.ll create mode 100644 llvm/test/Transforms/SCCP/range-and.ll