Simplify further.

Thanks to David Blaikie for the push.

llvm-svn: 199685
This commit is contained in:
Rafael Espindola 2014-01-20 20:13:11 +00:00
parent a69e5b8b9d
commit 8ff1610f06
1 changed files with 5 additions and 7 deletions

View File

@ -2420,8 +2420,7 @@ CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) {
GV = new llvm::GlobalVariable(getModule(), C->getType(), true,
llvm::GlobalVariable::PrivateLinkage, C,
"_unnamed_cfstring_");
const char *CFStringSection = "__DATA,__cfstring";
GV->setSection(CFStringSection);
GV->setSection("__DATA,__cfstring");
Entry.setValue(GV);
return GV;
@ -2534,12 +2533,11 @@ CodeGenModule::GetAddrOfConstantString(const StringLiteral *Literal) {
"_unnamed_nsstring_");
const char *NSStringSection = "__OBJC,__cstring_object,regular,no_dead_strip";
const char *NSStringNonFragileABISection =
"__DATA, __objc_stringobj, regular, no_dead_strip";
"__DATA,__objc_stringobj,regular,no_dead_strip";
// FIXME. Fix section.
const char *Sect = LangOpts.ObjCRuntime.isNonFragile()
? NSStringNonFragileABISection
: NSStringSection;
GV->setSection(Sect);
GV->setSection(LangOpts.ObjCRuntime.isNonFragile()
? NSStringNonFragileABISection
: NSStringSection);
Entry.setValue(GV);
return GV;