diff options
author | Devang Patel <dpatel@apple.com> | 2010-06-25 22:07:34 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-06-25 22:07:34 +0000 |
commit | 5c0f85c7ddaa544316320b134af38dace7e17668 (patch) | |
tree | d8fc525b12d916f5bc8bb951db6a22504ec7535c /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 8a6deefec65d912281a9426c3627f4c9b5bd1626 (diff) | |
download | bcm5719-llvm-5c0f85c7ddaa544316320b134af38dace7e17668.tar.gz bcm5719-llvm-5c0f85c7ddaa544316320b134af38dace7e17668.zip |
Collect debug info for optimized variables of inlined functions.
llvm-svn: 106895
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index a9cb8e8f438..c4c765c36a1 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -590,7 +590,8 @@ private: bool extractScopeInformation(); /// collectVariableInfo - Populate DbgScope entries with variables' info. - void collectVariableInfo(const MachineFunction *); + void collectVariableInfo(const MachineFunction *, + SmallPtrSet<const MDNode *, 16> &ProcessedVars); /// collectVariableInfoFromMMITable - Collect variable information from /// side table maintained by MMI. |