diff options
author | Sourabh Singh Tomar <SourabhSingh.Tomar@amd.com> | 2019-12-03 19:40:46 +0530 |
---|---|---|
committer | Sourabh Singh Tomar <SourabhSingh.Tomar@amd.com> | 2019-12-03 19:45:37 +0530 |
commit | 8dd17a13b04f00c41bc72fdb12a552f2df26e516 (patch) | |
tree | b644e44f55e0bc0be643e4d6ef2faab147987066 /llvm/lib/CodeGen/AsmPrinter | |
parent | 8881ac9c3986bad3a3b96a01fe9d603a740b2107 (diff) | |
download | bcm5719-llvm-8dd17a13b04f00c41bc72fdb12a552f2df26e516.tar.gz bcm5719-llvm-8dd17a13b04f00c41bc72fdb12a552f2df26e516.zip |
[NFCI][DebugInfo] Corrected a comment.
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index e689c08acf2..a8fe6962dfc 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1208,10 +1208,10 @@ void DwarfDebug::endModule() { emitDebugStr(); if (useSplitDwarf()) - // Handles debug_loc.dwo / debug_loclists.dwo section emission + // Emit debug_loc.dwo/debug_loclists.dwo section. emitDebugLocDWO(); else - // Handles debug_loc / debug_loclists section emission + // Emit debug_loc/debug_loclists section. emitDebugLoc(); // Corresponding abbreviations into a abbrev section. |