summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetLoweringObjectFile.cpp
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2015-03-27 17:51:30 +0000
committerYaron Keren <yaron.keren@gmail.com>2015-03-27 17:51:30 +0000
commit75e0c4b0603c2006111f164c4113c4f26bcdaf64 (patch)
treefea0a83b9bc4d00a2df61934123a5e374f4516c3 /llvm/lib/Target/TargetLoweringObjectFile.cpp
parent6dcddc21f83def171f2c0f558ae85a1994809a67 (diff)
downloadbcm5719-llvm-75e0c4b0603c2006111f164c4113c4f26bcdaf64.tar.gz
bcm5719-llvm-75e0c4b0603c2006111f164c4113c4f26bcdaf64.zip
Remove superfluous .str() and replace std::string concatenation with Twine.
llvm-svn: 233392
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r--llvm/lib/Target/TargetLoweringObjectFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp
index 75100fb9923..db543f33392 100644
--- a/llvm/lib/Target/TargetLoweringObjectFile.cpp
+++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp
@@ -110,7 +110,7 @@ MCSymbol *TargetLoweringObjectFile::getSymbolWithGlobalValueBase(
NameStr += DL->getPrivateGlobalPrefix();
TM.getNameWithPrefix(NameStr, GV, Mang);
NameStr.append(Suffix.begin(), Suffix.end());
- return Ctx->GetOrCreateSymbol(NameStr.str());
+ return Ctx->GetOrCreateSymbol(NameStr);
}
MCSymbol *TargetLoweringObjectFile::getCFIPersonalitySymbol(
OpenPOWER on IntegriCloud