From 8ff1610f06646b0f62060df06c194214bd992260 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 20 Jan 2014 20:13:11 +0000 Subject: Simplify further. Thanks to David Blaikie for the push. llvm-svn: 199685 --- clang/lib/CodeGen/CodeGenModule.cpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'clang/lib/CodeGen/CodeGenModule.cpp') diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index a3d575c6e59..88e6e66f9c0 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -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; -- cgit v1.2.3