diff options
author | Eric Christopher <echristo@gmail.com> | 2013-07-03 01:57:23 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-07-03 01:57:23 +0000 |
commit | 808fd7bb54aba515974f0ddba72366cf36e0d973 (patch) | |
tree | e0e7195814242a50b8824eb6a29b241feaef1cf2 /llvm/lib | |
parent | 95a7d49ecd35ca59629d514f6188b14eedc73cc9 (diff) | |
download | bcm5719-llvm-808fd7bb54aba515974f0ddba72366cf36e0d973.tar.gz bcm5719-llvm-808fd7bb54aba515974f0ddba72366cf36e0d973.zip |
Fix typo to make grep for DW_AT_comp_dir work without case-insensitive
grep.
llvm-svn: 185496
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index e28f70808d5..00f50c5e397 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -387,7 +387,7 @@ class DwarfDebug { MCSymbol *DwarfAbbrevDWOSectionSym, *DwarfStrDWOSectionSym; // As an optimization, there is no need to emit an entry in the directory - // table for the same directory as DW_at_comp_dir. + // table for the same directory as DW_AT_comp_dir. StringRef CompilationDir; // Counter for assigning globally unique IDs for CUs. |