This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9c6b970db8b [BTF] Add BTF DebugInfo new f019d91c8e8 [x86] add tests for fake vector FP ops; NFC new f170fd931e3 Revert "[BTF] Add BTF DebugInfo"
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: include/llvm/BinaryFormat/BTF.def | 33 -- include/llvm/BinaryFormat/BTF.h | 203 ------- include/llvm/MC/MCObjectFileInfo.h | 14 - lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 9 - lib/CodeGen/AsmPrinter/BTFDebug.cpp | 770 -------------------------- lib/CodeGen/AsmPrinter/BTFDebug.h | 293 ---------- lib/CodeGen/AsmPrinter/BTFDebugStub.cpp | 28 - lib/CodeGen/AsmPrinter/CMakeLists.txt | 12 - lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp | 2 +- lib/CodeGen/AsmPrinter/DebugHandlerBase.h | 2 +- lib/MC/MCObjectFileInfo.cpp | 3 - test/CodeGen/X86/scalarize-fp.ll | 393 +++++++++++++ test/DebugInfo/BTF/array-1d-char.ll | 68 --- test/DebugInfo/BTF/array-1d-int.ll | 68 --- test/DebugInfo/BTF/array-2d-int.ll | 68 --- test/DebugInfo/BTF/array-size-0.ll | 70 --- test/DebugInfo/BTF/array-typedef.ll | 82 --- test/DebugInfo/BTF/binary-format.ll | 68 --- test/DebugInfo/BTF/char.ll | 53 -- test/DebugInfo/BTF/enum-basic.ll | 62 --- test/DebugInfo/BTF/func-func-ptr.ll | 128 ----- test/DebugInfo/BTF/func-non-void.ll | 97 ---- test/DebugInfo/BTF/func-source.ll | 80 --- test/DebugInfo/BTF/func-typedef.ll | 112 ---- test/DebugInfo/BTF/func-unused-arg.ll | 93 ---- test/DebugInfo/BTF/func-void.ll | 74 --- test/DebugInfo/BTF/fwd-no-define.ll | 73 --- test/DebugInfo/BTF/fwd-with-define.ll | 66 --- test/DebugInfo/BTF/int.ll | 53 -- test/DebugInfo/BTF/lit.local.cfg | 2 - test/DebugInfo/BTF/longlong.ll | 53 -- test/DebugInfo/BTF/ptr-const-void.ll | 54 -- test/DebugInfo/BTF/ptr-func-1.ll | 55 -- test/DebugInfo/BTF/ptr-func-2.ll | 73 --- test/DebugInfo/BTF/ptr-func-3.ll | 73 --- test/DebugInfo/BTF/ptr-int.ll | 58 -- test/DebugInfo/BTF/ptr-void.ll | 50 -- test/DebugInfo/BTF/ptr-volatile-const-void.ll | 58 -- test/DebugInfo/BTF/ptr-volatile-void.ll | 54 -- test/DebugInfo/BTF/restrict-ptr.ll | 61 -- test/DebugInfo/BTF/short.ll | 54 -- test/DebugInfo/BTF/struct-anon.ll | 76 --- test/DebugInfo/BTF/struct-basic.ll | 81 --- test/DebugInfo/BTF/struct-bitfield-typedef.ll | 93 ---- test/DebugInfo/BTF/struct-enum.ll | 92 --- test/DebugInfo/BTF/uchar.ll | 53 -- test/DebugInfo/BTF/uint.ll | 53 -- test/DebugInfo/BTF/ulonglong.ll | 53 -- test/DebugInfo/BTF/union-array-typedef.ll | 103 ---- test/DebugInfo/BTF/ushort.ll | 53 -- 50 files changed, 395 insertions(+), 3984 deletions(-) delete mode 100644 include/llvm/BinaryFormat/BTF.def delete mode 100644 include/llvm/BinaryFormat/BTF.h delete mode 100644 lib/CodeGen/AsmPrinter/BTFDebug.cpp delete mode 100644 lib/CodeGen/AsmPrinter/BTFDebug.h delete mode 100644 lib/CodeGen/AsmPrinter/BTFDebugStub.cpp create mode 100644 test/CodeGen/X86/scalarize-fp.ll delete mode 100644 test/DebugInfo/BTF/array-1d-char.ll delete mode 100644 test/DebugInfo/BTF/array-1d-int.ll delete mode 100644 test/DebugInfo/BTF/array-2d-int.ll delete mode 100644 test/DebugInfo/BTF/array-size-0.ll delete mode 100644 test/DebugInfo/BTF/array-typedef.ll delete mode 100644 test/DebugInfo/BTF/binary-format.ll delete mode 100644 test/DebugInfo/BTF/char.ll delete mode 100644 test/DebugInfo/BTF/enum-basic.ll delete mode 100644 test/DebugInfo/BTF/func-func-ptr.ll delete mode 100644 test/DebugInfo/BTF/func-non-void.ll delete mode 100644 test/DebugInfo/BTF/func-source.ll delete mode 100644 test/DebugInfo/BTF/func-typedef.ll delete mode 100644 test/DebugInfo/BTF/func-unused-arg.ll delete mode 100644 test/DebugInfo/BTF/func-void.ll delete mode 100644 test/DebugInfo/BTF/fwd-no-define.ll delete mode 100644 test/DebugInfo/BTF/fwd-with-define.ll delete mode 100644 test/DebugInfo/BTF/int.ll delete mode 100644 test/DebugInfo/BTF/lit.local.cfg delete mode 100644 test/DebugInfo/BTF/longlong.ll delete mode 100644 test/DebugInfo/BTF/ptr-const-void.ll delete mode 100644 test/DebugInfo/BTF/ptr-func-1.ll delete mode 100644 test/DebugInfo/BTF/ptr-func-2.ll delete mode 100644 test/DebugInfo/BTF/ptr-func-3.ll delete mode 100644 test/DebugInfo/BTF/ptr-int.ll delete mode 100644 test/DebugInfo/BTF/ptr-void.ll delete mode 100644 test/DebugInfo/BTF/ptr-volatile-const-void.ll delete mode 100644 test/DebugInfo/BTF/ptr-volatile-void.ll delete mode 100644 test/DebugInfo/BTF/restrict-ptr.ll delete mode 100644 test/DebugInfo/BTF/short.ll delete mode 100644 test/DebugInfo/BTF/struct-anon.ll delete mode 100644 test/DebugInfo/BTF/struct-basic.ll delete mode 100644 test/DebugInfo/BTF/struct-bitfield-typedef.ll delete mode 100644 test/DebugInfo/BTF/struct-enum.ll delete mode 100644 test/DebugInfo/BTF/uchar.ll delete mode 100644 test/DebugInfo/BTF/uint.ll delete mode 100644 test/DebugInfo/BTF/ulonglong.ll delete mode 100644 test/DebugInfo/BTF/union-array-typedef.ll delete mode 100644 test/DebugInfo/BTF/ushort.ll