[llvm-commits] [llvm] r77161 - /llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp

Chris Lattner sabre at nondot.org
Sun Jul 26 11:08:29 PDT 2009


Author: lattner
Date: Sun Jul 26 13:08:15 2009
New Revision: 77161

URL: http://llvm.org/viewvc/llvm-project?rev=77161&view=rev
Log:
reduce indentation

Modified:
    llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp

Modified: llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp?rev=77161&r1=77160&r2=77161&view=diff

==============================================================================
--- llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/PIC16/PIC16TargetAsmInfo.cpp Sun Jul 26 13:08:15 2009
@@ -258,10 +258,10 @@
       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);
     }
   }
 





More information about the llvm-commits mailing list