This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0e4bd93 Fix 80-char violations. NFC. new e05a7ff Remove debug location from common tail when tail-merging new 5bd98bf Add -strip-nonlinetable-debuginfo capability new 5a31336 [InstCombine] add tests for missing icmp + shl nuw fold
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/IR/DebugInfo.h | 12 + include/llvm/IR/Metadata.h | 6 +- include/llvm/InitializePasses.h | 1 + include/llvm/Transforms/IPO.h | 4 + lib/CodeGen/BranchFolding.cpp | 7 +- lib/IR/DebugInfo.cpp | 293 +++++++++++++++++++++ lib/IR/Metadata.cpp | 2 +- lib/Transforms/Utils/CMakeLists.txt | 1 + .../Utils/StripNonLineTableDebugInfo.cpp | 42 +++ lib/Transforms/Utils/Utils.cpp | 1 + test/BugPoint/metadata.ll | 23 +- test/BugPoint/named-md.ll | 2 +- test/DebugInfo/COFF/local-variables.ll | 10 +- test/DebugInfo/X86/tail-merge.ll | 76 ++++++ test/Transforms/InstCombine/icmp-shl-nuw.ll | 80 ++++++ ...strip-nonlinetable-debuginfo-containingtypes.ll | 92 +++++++ .../Util/strip-nonlinetable-debuginfo-cus.ll | 24 ++ .../Util/strip-nonlinetable-debuginfo-localvars.ll | 36 +++ ...strip-nonlinetable-debuginfo-subroutinetypes.ll | 22 ++ tools/bugpoint/CrashDebugger.cpp | 23 ++ 20 files changed, 741 insertions(+), 16 deletions(-) create mode 100644 lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp create mode 100644 test/DebugInfo/X86/tail-merge.ll create mode 100644 test/Transforms/InstCombine/icmp-shl-nuw.ll create mode 100644 test/Transforms/Util/strip-nonlinetable-debuginfo-containingtypes.ll create mode 100644 test/Transforms/Util/strip-nonlinetable-debuginfo-cus.ll create mode 100644 test/Transforms/Util/strip-nonlinetable-debuginfo-localvars.ll create mode 100644 test/Transforms/Util/strip-nonlinetable-debuginfo-subroutinetypes.ll