aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-11-06 16:23:59 +0000
committerJim Laskey <jlaskey@mac.com>2006-11-06 16:23:59 +0000
commit235aeef9e19eb8dacffab088f5cf789422fced60 (patch)
tree9ec7f818413377beb028e6584e211ac5d88feb41
parentf39064c2de3dd9f842bbb58f29f9ae31b13c8492 (diff)
downloadllvm-235aeef9e19eb8dacffab088f5cf789422fced60.zip
llvm-235aeef9e19eb8dacffab088f5cf789422fced60.tar.gz
llvm-235aeef9e19eb8dacffab088f5cf789422fced60.tar.bz2
Tab interferes with uniqueness.
NOTE: There doesn't seem to be consistency for whether a leading tab is present in a section heading. llvm-svn: 31475
-rw-r--r--llvm/lib/CodeGen/DwarfWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DwarfWriter.cpp b/llvm/lib/CodeGen/DwarfWriter.cpp
index 1c33cd8..c18fb12 100644
--- a/llvm/lib/CodeGen/DwarfWriter.cpp
+++ b/llvm/lib/CodeGen/DwarfWriter.cpp
@@ -2678,7 +2678,7 @@ public:
ConstructSubprogramDIEs();
// Prime section data.
- SectionMap.insert(std::string("\t") + TAI->getTextSection());
+ SectionMap.insert(TAI->getTextSection());
}
}