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-master-aarch64-stable-allnoconfig in repository toolchain/ci/llvm-monorepo.
from 649be5807e4 [NFC] Fixed extra semicolon warning -This line, and those b [...] adds a4edcbf2554 [TypeName] Simplify operator!=. NFCI. adds 4f304dc353e [Type] Simplify operator!=. NFC. adds 0ca1077be16 [PowerPC] Fix machine verify pass error for PATCHPOINT pseu [...] adds 8bc6a184a03 [CommandInterpreter] Simplify PreprocessCommand. (NFCI) adds 12ab244e48c DeclAccessPair visualizer should be expandable adds 4517247c90c [llvm-objcopy] [COFF] Use Error/Expected returns instead of [...] adds 680216afb84 [AArch64] Implement the .arch_extension directive adds 8c8b2e05eb6 More tolerance for flaky tests in libc++ on NetBSD adds 6ec52cacd88 [gn build] Make `ninja check-clang` also run Clang's unit tests adds 341b3a801f2 [DAGCombiner] Add missing one use check on the shuffle in t [...] adds 1f07fee1416 [MSan] Handle llvm.is.constant intrinsic adds 6a2c8de706c [AArch64] Accept "sve" as arch feature in assembler new cf3a6e2aed6 [test] Fix propagating HOME envvar to unittests
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/utils/ClangVisualizers/clang.natvis | 4 + libcxx/utils/libcxx/test/format.py | 7 + lldb/source/Interpreter/CommandInterpreter.cpp | 244 +++++++++++---------- lldb/source/Symbol/Type.cpp | 9 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- .../Target/AArch64/AsmParser/AArch64AsmParser.cpp | 48 ++++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 11 +- .../Transforms/Instrumentation/MemorySanitizer.cpp | 6 + llvm/test/CodeGen/PowerPC/ppc64-anyregcc-crash.ll | 2 +- llvm/test/CodeGen/PowerPC/ppc64-anyregcc.ll | 2 +- llvm/test/CodeGen/PowerPC/ppc64-patchpoint.ll | 8 +- llvm/test/CodeGen/PowerPC/ppc64-stackmap.ll | 2 +- .../MemorySanitizer/msan_llvm_is_constant.ll | 21 ++ llvm/test/MC/AArch64/SVE/directive-arch.s | 6 + .../MC/AArch64/directive-arch_extension-nosimd.s | 6 + .../MC/AArch64/directive-arch_extension-simd.s | 6 + llvm/test/Unit/lit.cfg.py | 5 + llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp | 8 +- llvm/tools/llvm-objcopy/COFF/Reader.cpp | 54 ++--- llvm/tools/llvm-objcopy/COFF/Reader.h | 11 +- llvm/tools/llvm-objcopy/COFF/Writer.cpp | 37 ++-- llvm/tools/llvm-objcopy/COFF/Writer.h | 9 +- llvm/utils/gn/build/BUILDCONFIG.gn | 12 +- .../utils/gn/build/sync_source_lists_from_cmake.py | 28 ++- .../clang/lib/ASTMatchers/Dynamic/BUILD.gn | 16 ++ llvm/utils/gn/secondary/clang/test/BUILD.gn | 2 +- .../gn/secondary/clang/unittests/AST/BUILD.gn | 33 +++ .../secondary/clang/unittests/ASTMatchers/BUILD.gn | 19 ++ .../clang/unittests/ASTMatchers/Dynamic/BUILD.gn | 19 ++ .../gn/secondary/clang/unittests/Analysis/BUILD.gn | 19 ++ llvm/utils/gn/secondary/clang/unittests/BUILD.gn | 35 +++ .../gn/secondary/clang/unittests/Basic/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/CodeGen/BUILD.gn | 21 ++ .../gn/secondary/clang/unittests/CrossTU/BUILD.gn | 17 ++ .../gn/secondary/clang/unittests/Driver/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/Format/BUILD.gn | 31 +++ .../gn/secondary/clang/unittests/Frontend/BUILD.gn | 25 +++ .../gn/secondary/clang/unittests/Index/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/Lex/BUILD.gn | 20 ++ .../gn/secondary/clang/unittests/Rename/BUILD.gn | 28 +++ .../gn/secondary/clang/unittests/Rewrite/BUILD.gn | 12 + .../gn/secondary/clang/unittests/Sema/BUILD.gn | 18 ++ .../clang/unittests/StaticAnalyzer/BUILD.gn | 17 ++ .../gn/secondary/clang/unittests/Tooling/BUILD.gn | 61 ++++++ .../gn/secondary/clang/unittests/libclang/BUILD.gn | 14 ++ .../secondary/lld/unittests/DriverTests/BUILD.gn | 7 +- .../gn/secondary/lld/unittests/MachOTests/BUILD.gn | 7 +- .../gn/secondary/llvm/utils/unittest/unittest.gni | 44 ++++ 48 files changed, 857 insertions(+), 210 deletions(-) create mode 100644 llvm/test/Instrumentation/MemorySanitizer/msan_llvm_is_constant.ll create mode 100644 llvm/test/MC/AArch64/SVE/directive-arch.s create mode 100644 llvm/test/MC/AArch64/directive-arch_extension-nosimd.s create mode 100644 llvm/test/MC/AArch64/directive-arch_extension-simd.s create mode 100644 llvm/utils/gn/secondary/clang/lib/ASTMatchers/Dynamic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/AST/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/ASTMatchers/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/ASTMatchers/Dynamic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Analysis/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/CodeGen/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/CrossTU/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Driver/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Frontend/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Index/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Lex/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Rename/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Rewrite/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Sema/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/StaticAnalyzer/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Tooling/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/libclang/BUILD.gn create mode 100644 llvm/utils/gn/secondary/llvm/utils/unittest/unittest.gni