diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-11-06 16:23:59 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-11-06 16:23:59 +0000 |
commit | f910a3ff0f63143f44536db38e5975aec01c01d8 (patch) | |
tree | 5e07ecd250a4b2fd054d55039254f56ebfdb46e1 /lib/CodeGen/DwarfWriter.cpp | |
parent | 84ca10f47b2f9951e2156e430a800ce8d98e2000 (diff) |
Tab interferes with uniqueness.
NOTE: There doesn't seem to be consistency for whether a leading tab
is present in a section heading.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index 1c33cd85f1..c18fb12449 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -2678,7 +2678,7 @@ public: ConstructSubprogramDIEs(); // Prime section data. - SectionMap.insert(std::string("\t") + TAI->getTextSection()); + SectionMap.insert(TAI->getTextSection()); } } |