From 74fb545163e8f9f9f287b397254a82b4cfb2ff52 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 26 Jul 2009 18:08:15 +0000 Subject: [PATCH] reduce indentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77161 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PIC16/PIC16TargetAsmInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp index 192ec0803a1..e8f216d0995 100644 --- a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp +++ b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp @@ -258,10 +258,10 @@ PIC16TargetAsmInfo::getSpecialCasedSectionGlobals(const GlobalValue *GV, if (SectName.compare(0, AddrStr.length(), AddrStr) == 0) { std::string SectAddr = SectName.substr(AddrStr.length()); return CreateSectionForGlobal(GVar, SectAddr); - } else { - // Create the section specified with section attribute. - return CreateSectionForGlobal(GVar); } + + // Create the section specified with section attribute. + return CreateSectionForGlobal(GVar); } }