This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b763cd8c493 [COFF] Process /EXPORT option in fastpath new 0eaae26af34 [AMDGPU] Fixed incorrect uniform branch condition new ebe2b0b004f [SelectionDAG] Fixed f16-from-vector promotion problem new 6b54fc31e57 [WebAssembly] Explicitly specify function/global index spac [...]
The 3 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: include/llvm/BinaryFormat/Wasm.h | 2 + include/llvm/ObjectYAML/WasmYAML.h | 2 + lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 8 +++- lib/Object/WasmObjectFile.cpp | 4 +- lib/ObjectYAML/WasmYAML.cpp | 4 +- lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | 20 ++++++++ test/CodeGen/AMDGPU/branch-relaxation.ll | 11 +++-- test/CodeGen/AMDGPU/cf-loop-on-constant.ll | 2 +- test/CodeGen/AMDGPU/nested-loop-conditions.ll | 3 +- .../AMDGPU/scalar-branch-missing-and-exec.ll | 54 ++++++++++++++++++++++ test/CodeGen/AMDGPU/select-opt.ll | 4 +- test/CodeGen/AMDGPU/skip-if-dead.ll | 6 +-- test/CodeGen/AMDGPU/smrd-vccz-bug.ll | 2 +- test/CodeGen/AMDGPU/uniform-cfg.ll | 2 +- test/CodeGen/AMDGPU/unpack-half.ll | 26 +++++++++++ test/MC/WebAssembly/bss.ll | 12 +++-- test/MC/WebAssembly/explicit-sections.ll | 12 +++-- test/MC/WebAssembly/init-fini-array.ll | 15 ++++-- test/MC/WebAssembly/unnamed-data.ll | 12 +++-- test/MC/WebAssembly/weak-alias.ll | 24 ++++++---- test/ObjectYAML/wasm/code_section.yaml | 18 +++++--- test/ObjectYAML/wasm/export_section.yaml | 6 ++- test/ObjectYAML/wasm/global_section.yaml | 6 ++- test/ObjectYAML/wasm/import_section.yaml | 3 +- test/ObjectYAML/wasm/linking_section.yaml | 3 +- test/ObjectYAML/wasm/name_section.yaml | 3 +- test/ObjectYAML/wasm/start_section.yaml | 3 +- test/ObjectYAML/wasm/type_section.yaml | 6 ++- test/ObjectYAML/wasm/weak_symbols.yaml | 6 ++- test/tools/llvm-nm/wasm/exports.yaml | 34 ++++++++------ test/tools/llvm-nm/wasm/imports.yaml | 3 +- test/tools/llvm-nm/wasm/weak-symbols.yaml | 16 ++++--- tools/obj2yaml/wasm2yaml.cpp | 2 + tools/yaml2obj/yaml2wasm.cpp | 37 +++++++++++++-- 34 files changed, 287 insertions(+), 84 deletions(-) create mode 100644 test/CodeGen/AMDGPU/scalar-branch-missing-and-exec.ll create mode 100644 test/CodeGen/AMDGPU/unpack-half.ll