This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1d9b8df1fe2 Remove support for unsupported MSVC versions new 5336ac56aaa [BPF] Handling type conversions correctly for CO-RE new 07f30f869b9 [X86] Use the pointer VT for the Scale node when lowering x [...]
The 2 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/BPF/BPFAbstractMemberAccess.cpp | 332 +++++++++++++++++---- lib/Target/BPF/BTFDebug.cpp | 110 +------ lib/Target/BPF/BTFDebug.h | 15 +- lib/Target/X86/X86ISelLowering.cpp | 16 +- test/CodeGen/BPF/CORE/offset-reloc-cast-array-1.ll | 124 ++++++++ test/CodeGen/BPF/CORE/offset-reloc-cast-array-2.ll | 131 ++++++++ .../CodeGen/BPF/CORE/offset-reloc-cast-struct-1.ll | 112 +++++++ .../CodeGen/BPF/CORE/offset-reloc-cast-struct-2.ll | 117 ++++++++ .../CodeGen/BPF/CORE/offset-reloc-cast-struct-3.ll | 116 +++++++ test/CodeGen/BPF/CORE/offset-reloc-cast-union-1.ll | 117 ++++++++ test/CodeGen/BPF/CORE/offset-reloc-cast-union-2.ll | 118 ++++++++ test/CodeGen/BPF/CORE/offset-reloc-global-1.ll | 79 +++++ test/CodeGen/BPF/CORE/offset-reloc-global-2.ll | 95 ++++++ test/CodeGen/BPF/CORE/offset-reloc-global-3.ll | 84 ++++++ test/CodeGen/BPF/CORE/offset-reloc-ignore.ll | 62 ++++ .../CodeGen/BPF/CORE/offset-reloc-multi-array-1.ll | 101 +++++++ .../CodeGen/BPF/CORE/offset-reloc-multi-array-2.ll | 107 +++++++ test/CodeGen/BPF/CORE/offset-reloc-pointer-1.ll | 83 ++++++ test/CodeGen/BPF/CORE/offset-reloc-pointer-2.ll | 85 ++++++ .../BPF/CORE/offset-reloc-struct-anonymous.ll | 2 +- test/CodeGen/BPF/CORE/offset-reloc-struct-array.ll | 2 +- .../CodeGen/BPF/CORE/offset-reloc-typedef-array.ll | 2 +- test/CodeGen/BPF/CORE/offset-reloc-typedef.ll | 2 +- 23 files changed, 1824 insertions(+), 188 deletions(-) create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-array-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-array-2.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-struct-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-struct-2.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-struct-3.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-union-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-cast-union-2.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-global-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-global-2.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-global-3.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-ignore.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-multi-array-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-multi-array-2.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-pointer-1.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-pointer-2.ll