diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-19 22:42:15 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-19 22:42:15 +0000 |
commit | 58f419594260535bdf49c8c745e4575d5528d390 (patch) | |
tree | db313bfaf6269c816e8ff768dbc5d7f3a900a8a0 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 6a8413853f987ddae7504c7b35f8bb540acd6235 (diff) | |
download | bcm5719-llvm-58f419594260535bdf49c8c745e4575d5528d390.tar.gz bcm5719-llvm-58f419594260535bdf49c8c745e4575d5528d390.zip |
Remove a function argument and propagate const around accordingly.
llvm-svn: 168338
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 1188ffa73ca..5b281fe8295 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -494,15 +494,15 @@ public: /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such /// as llvm.dbg.enum and llvm.dbg.ty - void collectInfoFromNamedMDNodes(Module *M); + void collectInfoFromNamedMDNodes(const Module *M); /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder. /// FIXME - Remove this when DragonEgg switches to DIBuilder. - bool collectLegacyDebugInfo(Module *M); + bool collectLegacyDebugInfo(const Module *M); /// beginModule - Emit all Dwarf sections that should come prior to the /// content. - void beginModule(Module *M); + void beginModule(); /// endModule - Emit all Dwarf sections that should come after the content. /// |