This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2b2a8f1 [LoopDataPrefetch] Add optimization remark new 1232987 [codeview] Move dumper into lib/DebugInfo/CodeView new 4a5d819 [SystemZ] Implement backchain attribute (recommit with fix).
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/DebugInfo/CodeView/CVTypeVisitor.h | 6 +- include/llvm/DebugInfo/CodeView/TypeDumper.h | 65 ++ include/llvm/DebugInfo/CodeView/TypeStream.h | 19 + lib/DebugInfo/CodeView/CMakeLists.txt | 2 + lib/DebugInfo/CodeView/TypeDumper.cpp | 753 ++++++++++++++++++++++ lib/DebugInfo/CodeView/TypeStream.cpp | 97 +++ lib/Target/SystemZ/SystemZFrameLowering.cpp | 13 + lib/Target/SystemZ/SystemZISelLowering.cpp | 37 +- test/CodeGen/SystemZ/backchain.ll | 84 +++ tools/llvm-readobj/CMakeLists.txt | 1 + tools/llvm-readobj/COFFDumper.cpp | 819 +----------------------- 11 files changed, 1079 insertions(+), 817 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/TypeDumper.h create mode 100644 lib/DebugInfo/CodeView/TypeDumper.cpp create mode 100644 lib/DebugInfo/CodeView/TypeStream.cpp create mode 100644 test/CodeGen/SystemZ/backchain.ll