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-arm-next-allyesconfig in repository toolchain/ci/llvm-project.
from b232d5649d3 [llvm-objdump] - Remove one of `report_error` functions and [...] adds 50fdaaf5b88 Regex: +regex string lifetime comment adds cec028fc14d [X86][FMA] Add FMA 'negated expression' combine tests for D63141 adds 6687fde07ae [Syntax] Added function to get macro expansion tokens to To [...] adds f99d254aaec [InstCombine] simplify min/max of min/max with same operand [...] adds 0e8e4b09d2f [clangd] Fix one testcase in XRefsTests. adds 16111d3795c [X86][BtVer2] Fix latency and throughput of atomic INC/DEC/ [...] adds cda334ba541 [BlockExtractor] Avoid assert with wrong line format adds a90ee0eeb6a [InstCombine] improve readability for icmp with cast folds; NFC adds ebd50291e8c [llvm-objcopy] Append '\n' to warning messages adds 494a4d16809 [llvm-objcopy][test] Add a test to show that argv[0] is inc [...] adds a47ca1ea6d3 [libc++] Explicitly cast in generate_canonical adds 6585f018ada [libc++] std::abs should not return double adds be699bf3899 [CodeGen] Add a pass to do block predication on SSA mac [...] adds ed602ef4804 Regex: Add isValid() with no parameter adds 95b5f42de81 [clang] Use the new Regex::isValid() with no parameter adds 1c56d3df195 [lldb] Use the new Regex::isValid() with no parameter adds 696630eaf28 Fix availability of __thread_id on builds with external thr [...] adds 3e5360f1946 [scudo][standalone] Fix malloc_iterate adds 184bc069c60 gn build: Merge r369298 adds fe91b9d6da9 win: Enable /Zc:twoPhase by default if targeting MSVC 2017 [...] adds 08bd0808720 [GlobalISel] Handle multiple registers in dbg.value intrinsic adds dcfc2d40d30 [ARM] Select vaddva adds 53ab6bef98e [CodeGen] Add EarlyIfConvert test missed in previous commit adds ab50b830d02 [libc++] Populate a lit feature including the compiler patch level adds 260aa0f0f3a Make the FindTypes(std::vector<CompilerContext>, ...) API t [...] adds eaee4de503c [LifetimeAnalysis] Add support for free functions adds cb93f650b6e [libc++] Disable <chrono> ""d and ""y literal tests on Appl [...] adds 22ac9f396fc [X86] Use isNullConstant instead of getConstantOperandVal = [...] adds 2e68e4d60e9 [InstCombine] make fold for icmp with sext more efficient; NFC adds 2e897a94f58 [X86][BtVer2] Use ReadAfterLd entries for the register oper [...] adds 86d560ff1b7 [libc++] fix test for unsigned char adds 1e0affb6e56 [Attr] Support _attribute__ ((fallthrough))
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clangd/XRefs.cpp | 30 +- clang-tools-extra/clangd/unittests/XRefsTests.cpp | 20 +- clang/docs/ReleaseNotes.rst | 3 + clang/include/clang/Basic/Attr.td | 2 +- clang/include/clang/Driver/CLCompatOptions.td | 4 +- clang/include/clang/Parse/Parser.h | 13 +- clang/include/clang/Tooling/Syntax/Tokens.h | 10 + clang/lib/Analysis/CloneDetection.cpp | 3 +- clang/lib/Driver/ToolChains/Clang.cpp | 12 +- clang/lib/Parse/ParseDecl.cpp | 30 +- clang/lib/Parse/ParseStmt.cpp | 20 +- clang/lib/Sema/AnalysisBasedWarnings.cpp | 58 ++-- clang/lib/Sema/SemaInit.cpp | 29 ++ clang/lib/Tooling/Syntax/Tokens.cpp | 15 + clang/test/Driver/cl-options.c | 18 +- clang/test/Sema/fallthrough-attr.c | 24 ++ clang/test/Sema/warn-lifetime-analysis-nocfg.cpp | 32 +- clang/test/SemaCXX/switch-implicit-fallthrough.cpp | 12 + clang/test/SemaCXX/warn-unused-label-error.cpp | 8 +- clang/unittests/Tooling/Syntax/TokensTest.cpp | 23 ++ compiler-rt/lib/scudo/standalone/combined.h | 2 +- compiler-rt/lib/scudo/standalone/primary64.h | 6 +- .../lib/scudo/standalone/tests/wrappers_c_test.cpp | 41 +++ libcxx/include/__threading_support | 19 +- libcxx/include/random | 2 +- libcxx/test/std/numerics/c.math/abs.fail.cpp | 32 ++ libcxx/test/std/numerics/c.math/abs.pass.cpp | 71 +++++ .../time.cal.day.nonmembers/literals.pass.cpp | 1 + .../time.cal.year.nonmembers/literals.pass.cpp | 1 + libcxx/utils/libcxx/test/config.py | 4 +- libcxx/www/cxx1z_status.html | 2 +- lldb/lit/SymbolFile/DWARF/compilercontext.ll | 35 +++ lldb/lit/SymbolFile/DWARF/lit.local.cfg | 2 +- lldb/source/Utility/RegularExpression.cpp | 5 +- lldb/tools/lldb-test/lldb-test.cpp | 53 +++- llvm/include/llvm/CodeGen/Passes.h | 4 + llvm/include/llvm/InitializePasses.h | 1 + llvm/include/llvm/Support/Regex.h | 4 + llvm/lib/CodeGen/CodeGen.cpp | 1 + llvm/lib/CodeGen/EarlyIfConversion.cpp | 333 ++++++++++++++++++--- llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 13 +- llvm/lib/Target/ARM/ARMInstrMVE.td | 7 + llvm/lib/Target/X86/X86ISelLowering.cpp | 4 +- llvm/lib/Target/X86/X86ScheduleBtVer2.td | 29 +- llvm/lib/Transforms/IPO/BlockExtractor.cpp | 2 + .../Transforms/InstCombine/InstCombineCompares.cpp | 105 +++---- .../Transforms/InstCombine/InstCombineInternal.h | 2 +- .../Transforms/InstCombine/InstCombineSelect.cpp | 10 + llvm/test/CodeGen/Generic/DbgValueAggregate.ll | 36 +++ llvm/test/CodeGen/Hexagon/early-if-predicator.mir | 81 +++++ llvm/test/CodeGen/Thumb2/mve-vaddv.ll | 79 ++++- llvm/test/CodeGen/X86/fma-fneg-combine-2.ll | 89 ++++++ .../test/Transforms/BlockExtractor/invalid-line.ll | 9 + .../Transforms/InstCombine/minmax-of-minmax.ll | 136 +++------ .../llvm-mca/X86/BtVer2/cmpxchg-read-advance.s | 286 ++++++++++++++++++ .../tools/llvm-mca/X86/BtVer2/resources-x86_64.s | 66 ++-- llvm/test/tools/llvm-objcopy/ELF/error-format.test | 20 ++ .../tools/llvm-objcopy/ELF/same-file-strip.test | 7 +- llvm/tools/llvm-objcopy/llvm-objcopy.cpp | 2 +- .../gn/secondary/llvm/tools/llvm-objcopy/BUILD.gn | 1 + 60 files changed, 1598 insertions(+), 371 deletions(-) create mode 100644 clang/test/Sema/fallthrough-attr.c create mode 100644 libcxx/test/std/numerics/c.math/abs.fail.cpp create mode 100644 libcxx/test/std/numerics/c.math/abs.pass.cpp create mode 100644 lldb/lit/SymbolFile/DWARF/compilercontext.ll create mode 100644 llvm/test/CodeGen/Generic/DbgValueAggregate.ll create mode 100644 llvm/test/CodeGen/Hexagon/early-if-predicator.mir create mode 100644 llvm/test/CodeGen/X86/fma-fneg-combine-2.ll create mode 100644 llvm/test/Transforms/BlockExtractor/invalid-line.ll create mode 100644 llvm/test/tools/llvm-mca/X86/BtVer2/cmpxchg-read-advance.s create mode 100644 llvm/test/tools/llvm-objcopy/ELF/error-format.test