This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tx1/llvm-master-aarch64-spec2k6-O3 in repository toolchain/ci/llvm-project.
from e49584a34a1 [WebAssembly] Fix for use of uninitialized member in WasmOb [...] new 4f5f6c1b83c Move late-parsed class member attribute handling adjacent t [...] new ea6df2fb8fa [AMDGPU] Update AMD GPU processor information new fffd05d5252 [ELF] Add -z start-stop-visibility= to set __start_/__stop_ [...] new 723b5a17854 [lld][ELF][AArch64] Handle R_AARCH64_PLT32 relocation new 90ad786947c [IR] Prefer scalar type for struct indexes in GEP constant [...] new e9d4e34ab8a [AArch64][SVE] Add legalization support for i32/i64 vector [...] new c2bb88cc025 [NFC] Remove outdated comment in llvm-symbolizer test case. new d1446017f3f DR458: Search template parameter scopes in the right order. new bf8b63ed296 [clang codegen] Fix alignment of "Address" for incomplete a [...] new e7f7137cd71 [MLIR] [NFC] Add new line and empty line before printing mo [...] new 5804a8b1228 [WebAssebmly] Fully disable 'protected' visibility new a162048a47b AMDGPU/GlobalISel: Fix fixed ABI special VGPR function arguments new f8bd6a75eda [SimplifyCFG] Drop debug loc in SpeculativelyExecuteBB
The 13 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/include/clang/Parse/Parser.h | 59 +++-- clang/include/clang/Sema/Scope.h | 17 +- clang/include/clang/Sema/Sema.h | 10 +- clang/lib/AST/DeclBase.cpp | 2 +- clang/lib/Basic/Targets/WebAssembly.h | 6 +- clang/lib/CodeGen/CodeGenModule.cpp | 57 +++-- clang/lib/Parse/ParseCXXInlineMethods.cpp | 267 ++++++++++++++------- clang/lib/Parse/ParseDecl.cpp | 148 ------------ clang/lib/Parse/ParseDeclCXX.cpp | 5 +- clang/lib/Parse/ParseExprCXX.cpp | 9 +- clang/lib/Parse/ParseOpenMP.cpp | 31 +-- clang/lib/Parse/ParseTemplate.cpp | 95 +++----- clang/lib/Sema/SemaDecl.cpp | 94 ++++---- clang/lib/Sema/SemaDeclCXX.cpp | 50 ++-- clang/lib/Sema/SemaLookup.cpp | 128 ++-------- clang/lib/Sema/SemaTemplate.cpp | 3 +- clang/test/CXX/drs/dr4xx.cpp | 10 +- clang/test/CXX/temp/temp.res/temp.local/p8.cpp | 102 +++++++- clang/test/CodeGenCXX/alignment.cpp | 16 ++ clang/test/SemaCXX/lambda-expressions.cpp | 16 +- clang/www/cxx_dr_status.html | 2 +- lld/ELF/Arch/AArch64.cpp | 16 +- lld/ELF/Config.h | 1 + lld/ELF/Driver.cpp | 22 +- lld/ELF/InputSection.cpp | 1 + lld/ELF/Thunks.cpp | 3 +- lld/ELF/Writer.cpp | 6 +- lld/test/ELF/aarch64-range-thunk-extension-plt32.s | 36 +++ lld/test/ELF/aarch64-reloc-plt32.s | 32 +++ lld/test/ELF/aarch64-undefined-weak.s | 5 +- lld/test/ELF/startstop-visibility.s | 45 ++++ llvm/docs/AMDGPUUsage.rst | 32 +-- llvm/include/llvm/CodeGen/TargetLowering.h | 4 + llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 20 +- .../lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 16 ++ llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 23 ++ llvm/lib/IR/Constants.cpp | 15 +- llvm/lib/IR/DataLayout.cpp | 2 +- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 4 + llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp | 9 +- llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 2 +- llvm/lib/Target/ARM/ARMISelLowering.cpp | 4 + llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 9 +- .../Analysis/ConstantFolding/vectorgep-crash.ll | 2 +- llvm/test/CodeGen/AArch64/llvm-ir-to-intrinsic.ll | 61 +++++ .../irtranslator-fixed-function-abi-vgpr-args.ll | 92 +++++++ llvm/test/Transforms/InstSimplify/gep.ll | 10 +- .../SimplifyCFG/drop-debug-loc-when-speculating.ll | 39 +++ .../test/tools/llvm-symbolizer/pdb/pdb-native.test | 2 - mlir/lib/Transforms/LoopInvariantCodeMotion.cpp | 10 +- 50 files changed, 1025 insertions(+), 625 deletions(-) create mode 100644 lld/test/ELF/aarch64-range-thunk-extension-plt32.s create mode 100644 lld/test/ELF/aarch64-reloc-plt32.s create mode 100644 lld/test/ELF/startstop-visibility.s create mode 100644 llvm/test/CodeGen/AMDGPU/GlobalISel/irtranslator-fixed-function [...] create mode 100644 llvm/test/Transforms/SimplifyCFG/drop-debug-loc-when-speculating.ll