This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0a4c4a2bdd6 [libFuzzer] recommend Clang Coverage for coverage visualization new 45424dbebb0 AMDGPU: Start adding tail call support new 363fd7a30f2 Output S_SECTION symbols to the Linker module. new 8026017fd0d Fix access to undefined weak symbols in pic code
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: lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 6 +- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 37 +++++ lib/Target/AMDGPU/AMDGPUISelLowering.h | 6 + lib/Target/AMDGPU/AMDGPUInstrInfo.td | 6 + lib/Target/AMDGPU/AMDGPUMCInstLower.cpp | 3 + lib/Target/AMDGPU/SIISelLowering.cpp | 204 +++++++++++++++++++++++--- lib/Target/AMDGPU/SIISelLowering.h | 9 ++ lib/Target/AMDGPU/SIInstructions.td | 25 ++++ lib/Target/AMDGPU/SIMachineFunctionInfo.h | 19 +++ lib/Target/X86/X86Subtarget.cpp | 18 ++- test/CodeGen/AMDGPU/sibling-call.ll | 225 +++++++++++++++++++++++++++++ test/CodeGen/AMDGPU/tail-call-cgp.ll | 43 ++++++ test/CodeGen/X86/weak-undef.ll | 58 ++++++++ tools/llvm-pdbutil/DumpOutputStyle.cpp | 68 --------- tools/llvm-pdbutil/FormatUtil.cpp | 85 +++++++++++ tools/llvm-pdbutil/FormatUtil.h | 9 ++ tools/llvm-pdbutil/MinimalSymbolDumper.cpp | 19 ++- 17 files changed, 745 insertions(+), 95 deletions(-) create mode 100644 test/CodeGen/AMDGPU/sibling-call.ll create mode 100644 test/CodeGen/AMDGPU/tail-call-cgp.ll create mode 100644 test/CodeGen/X86/weak-undef.ll