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-lts-allmodconfig in repository toolchain/ci/llvm-project.
from 423f541c1a3 [DWARF5]Addition of alignment atrribute in typedef DIE. adds 08ea1ee2db5 [NFC] Refactor representation of materialized temporaries adds 6d7fa65c38e [mips] Remove old FIXME comment. NFC adds 584704c725a [mips] Remove redundant cast. NFC adds 2916489c54a [Docs] Fix relative links in tutorial. adds 0068c591399 [libc++] Rename __to_raw_pointer to __to_address. adds 551acdbf937 Make it possible to run MIRCanonicalizer in pipeline. adds 63cf7040814 [Docs] Try fixing the tutorial toctree adds fb55d56fcfa [Docs] Fix sphinx warning. adds 5e782e74b37 [Docs] Remove stray :doc: directive. adds 45d048c2044 [libc++] Add C++20 contiguous_iterator_tag. adds 6624fcba43b [libc++] Add _ITER_CONCEPT and _ITER_TRAITS implementations [...] adds cc6b8539017 [MIRNamer]: Make the check lines in the test robust with regex. adds c9276fbfdf0 Revert "[NFC] Refactor representation of materialized temporaries" adds 7bed2cb8535 [InstCombine] Add extra tests for overflow_to_sat.ll. NFC adds 03fce6b12e6 [InstCombine] Canonicalize sadd.with.overflow with clamp to [...] adds 08390c52a29 [InstCombine] Canonicalize ssub.with.overflow with clamp to [...] adds f5870b0f36b [SimplifyCFG] add tests for possible FP speculative select; NFC adds 23f736059c7 [SimplifyCFG] add fast-math-flags to tests for better cover [...] new ebf9bf2cbc8 [SimplifyCFG] propagate fast-math-flags (FMF) from phi to select
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: libcxx/include/__bit_reference | 12 +- libcxx/include/__split_buffer | 24 +-- libcxx/include/deque | 10 +- libcxx/include/iterator | 66 +++++++- libcxx/include/memory | 65 ++++---- libcxx/include/string | 80 +++++----- libcxx/include/type_traits | 13 +- libcxx/include/vector | 18 +-- .../iterator.concepts/cpp20_iter_concepts.pass.cpp | 73 +++++++++ .../iterator.concepts/cpp20_iter_traits.pass.cpp | 47 ++++++ .../iterator.traits/pointer.pass.cpp | 5 +- .../contiguous_iterator_tag.pass.cpp | 31 ++++ .../MyFirstLanguageFrontend/LangImpl01.rst | 2 - .../MyFirstLanguageFrontend/LangImpl02.rst | 2 - .../MyFirstLanguageFrontend/LangImpl03.rst | 20 ++- .../MyFirstLanguageFrontend/LangImpl04.rst | 10 +- .../MyFirstLanguageFrontend/LangImpl05.rst | 4 +- .../MyFirstLanguageFrontend/LangImpl06.rst | 2 - .../MyFirstLanguageFrontend/LangImpl07.rst | 10 +- .../MyFirstLanguageFrontend/LangImpl08.rst | 2 - .../MyFirstLanguageFrontend/LangImpl09.rst | 2 - .../MyFirstLanguageFrontend/LangImpl10.rst | 10 +- .../tutorial/MyFirstLanguageFrontend/index.rst | 17 +- llvm/docs/tutorial/index.rst | 9 +- llvm/include/llvm/CodeGen/Passes.h | 5 + llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 2 - llvm/lib/Target/Mips/MipsInstrInfo.td | 17 +- .../Transforms/InstCombine/InstCombineSelect.cpp | 94 ++++++++++- llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 5 + .../CodeGen/MIR/AArch64/mirCanonCopyCopyProp.mir | 4 +- .../CodeGen/MIR/AArch64/mirCanonIdempotent.mir | 12 +- llvm/test/CodeGen/MIR/AArch64/mirnamer.mir | 42 ++--- llvm/test/CodeGen/MIR/AMDGPU/mir-canon-multi.mir | 25 ++- .../test/Transforms/InstCombine/overflow_to_sat.ll | 174 ++++++++++----------- .../test/Transforms/SimplifyCFG/SpeculativeExec.ll | 135 +++++++++++----- llvm/test/Transforms/SimplifyCFG/speculate-math.ll | 32 ++-- 36 files changed, 730 insertions(+), 351 deletions(-) create mode 100644 libcxx/test/libcxx/iterators/iterator.requirements/iterator.con [...] create mode 100644 libcxx/test/libcxx/iterators/iterator.requirements/iterator.con [...] create mode 100644 libcxx/test/std/iterators/iterator.primitives/std.iterator.tags [...]