This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 744cc49 [Hexagon] Optimize addressing modes for load/store new 3cc6d46 [PATCH] [mips] Fix forbidden slot hazard handling new 260e009 [mips][FastISel] A store is not a load. new 36853e8 Recommitted r264280 "Supporting all entities declared in lexi [...] new 7ec8f07 Fix NDEBUG build: variables used only in debug code causing c [...]
The 4 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/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 139 +++++++++++---- lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 37 +++- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 35 +++- lib/CodeGen/AsmPrinter/DwarfDebug.h | 17 ++ lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 22 ++- lib/CodeGen/AsmPrinter/DwarfUnit.h | 3 + lib/Target/Hexagon/HexagonOptAddrMode.cpp | 12 +- lib/Target/Mips/MipsFastISel.cpp | 2 +- lib/Target/Mips/MipsHazardSchedule.cpp | 14 +- test/CodeGen/Mips/Fast-ISel/fastalloca.ll | 2 +- .../Generic/2010-04-06-NestedFnDbgInfo.ll | 3 +- .../Generic/2010-06-29-InlinedFnLocalVar.ll | 3 +- test/DebugInfo/Generic/namespace.ll | 30 ++-- test/DebugInfo/Mips/InlinedFnLocalVar.ll | 3 +- test/DebugInfo/X86/InlinedFnLocalVar.ll | 3 +- test/DebugInfo/X86/PR24008.ll | 66 +++++++ test/DebugInfo/X86/dbg-file-name.ll | 3 +- test/DebugInfo/X86/debug-dead-local-var.ll | 3 +- test/DebugInfo/X86/gnu-public-names.ll | 25 +-- test/DebugInfo/X86/lexical-block-file.ll | 88 +++++++++ test/DebugInfo/X86/lexical-block-inline.ll | 198 +++++++++++++++++++++ test/DebugInfo/X86/lexical-block.ll | 130 ++++++++++++++ test/DebugInfo/X86/subprogram-inline.ll | 168 +++++++++++++++++ 23 files changed, 915 insertions(+), 91 deletions(-) create mode 100644 test/DebugInfo/X86/PR24008.ll create mode 100644 test/DebugInfo/X86/lexical-block-file.ll create mode 100644 test/DebugInfo/X86/lexical-block-inline.ll create mode 100644 test/DebugInfo/X86/lexical-block.ll create mode 100644 test/DebugInfo/X86/subprogram-inline.ll