This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/llvm-release-arm-spec2k6-O3 in repository toolchain/ci/llvm-project.
from edbe962459d [COFF] Don't treat DWARF sections as GC roots adds 321d929774c [DAGCombine] Fix splitting indexed loads in ForwardStoreVal [...] adds e3ac79a6490 Teach TreeTransform to substitute into resolved TemplateArguments. adds b6ccc88d575 [ELF][test] Rename SHF_LINK_ORDER related "metadata" to "li [...] adds b2881de649c [ELF][test] Improve linkerscript/linkorder.s adds 71c3f57326c [ELF] Allow SHF_LINK_ORDER and non-SHF_LINK_ORDER to be mixed adds 5fbba36cbe9 [SimplifyCFG] Skip merging return blocks if it would break [...] adds ef7dbe6de65 [X86][SSE] combineX86ShufflesConstants - early out for zero [...] adds cc6e51a1414 add release notes for ffp-model and ffp-exception-behavior adds 6196695ec58 [CodeView] Align type records on 4-bytes when emitting PDBs adds 92d5c1be9ee [PowerPC] Update alignment for ReuseLoadInfo in LowerFP_TO_ [...]
No new revisions were added by this update.
Summary of changes: clang/docs/ReleaseNotes.rst | 7 ++ clang/lib/Sema/TreeTransform.h | 85 ++++++++++------------ clang/test/SemaTemplate/subst-into-subst.cpp | 34 +++++++++ lld/ELF/OutputSections.cpp | 8 +- lld/ELF/Writer.cpp | 27 +++++-- lld/test/COFF/pdb-tpi-aligned-records.test | 46 ++++++++++++ ...-metadata-err.s => gc-sections-linkorder-err.s} | 0 lld/test/ELF/gc-sections-linkorder.s | 32 ++++++++ ...ctions-metadata2.s => gc-sections-linkorder2.s} | 9 +-- lld/test/ELF/gc-sections-metadata.s | 38 ---------- ...card-section-metadata.s => discard-linkorder.s} | 0 lld/test/ELF/linkerscript/linkorder.s | 67 +++++++++++++++++ .../{section-metadata2.s => linkorder2.s} | 0 lld/test/ELF/linkerscript/section-metadata.s | 33 --------- lld/test/ELF/linkorder-err.s | 11 +++ .../{section-metadata-err2.s => linkorder-err2.s} | 4 +- lld/test/ELF/section-metadata-err.s | 15 ---- lld/test/ELF/section-metadata-err3.s | 17 ----- .../DebugInfo/CodeView/GlobalTypeTableBuilder.h | 5 ++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 25 ++++--- .../DebugInfo/CodeView/MergingTypeTableBuilder.cpp | 4 +- llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 24 +++++- llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp | 10 ++- llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 7 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 8 +- llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp | 15 ++++ llvm/test/CodeGen/PowerPC/kernel-fp-round.ll | 44 +++++++++++ llvm/test/CodeGen/PowerPC/pr45301.ll | 58 +++++++++++++++ llvm/test/CodeGen/X86/pr45443.ll | 21 ++++++ .../Transforms/SimplifyCFG/callbr-destinations.ll | 28 +++++++ 30 files changed, 494 insertions(+), 188 deletions(-) create mode 100644 clang/test/SemaTemplate/subst-into-subst.cpp create mode 100644 lld/test/COFF/pdb-tpi-aligned-records.test rename lld/test/ELF/{gc-sections-metadata-err.s => gc-sections-linkorder-err.s} (100%) create mode 100644 lld/test/ELF/gc-sections-linkorder.s rename lld/test/ELF/{gc-sections-metadata2.s => gc-sections-linkorder2.s} (60%) delete mode 100644 lld/test/ELF/gc-sections-metadata.s rename lld/test/ELF/linkerscript/{discard-section-metadata.s => discard-linkorder. [...] create mode 100644 lld/test/ELF/linkerscript/linkorder.s rename lld/test/ELF/linkerscript/{section-metadata2.s => linkorder2.s} (100%) delete mode 100644 lld/test/ELF/linkerscript/section-metadata.s create mode 100644 lld/test/ELF/linkorder-err.s rename lld/test/ELF/{section-metadata-err2.s => linkorder-err2.s} (55%) delete mode 100644 lld/test/ELF/section-metadata-err.s delete mode 100644 lld/test/ELF/section-metadata-err3.s create mode 100644 llvm/test/CodeGen/PowerPC/kernel-fp-round.ll create mode 100644 llvm/test/CodeGen/PowerPC/pr45301.ll create mode 100644 llvm/test/CodeGen/X86/pr45443.ll create mode 100644 llvm/test/Transforms/SimplifyCFG/callbr-destinations.ll