aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-26 18:08:15 +0000
committerChris Lattner <sabre@nondot.org>2009-07-26 18:08:15 +0000
commit74fb545163e8f9f9f287b397254a82b4cfb2ff52 (patch)
treef603af5a285912673193f8f1ddf88a3a66001d55
parent7e763ebd982e199224a2d2e0cc802d09d2822b34 (diff)
reduce indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77161 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PIC16/PIC16TargetAsmInfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
index 192ec0803a..e8f216d099 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);
}
}