clean up some formatting, indent by 2 instead of 4.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76490 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
index e8b86e0..5bc1e3d 100644
--- a/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
+++ b/lib/Target/PIC16/PIC16TargetAsmInfo.cpp
@@ -241,23 +241,14 @@
}
PIC16TargetAsmInfo::~PIC16TargetAsmInfo() {
-
- for (unsigned i = 0; i < BSSSections.size(); i++) {
- delete BSSSections[i];
- }
-
- for (unsigned i = 0; i < IDATASections.size(); i++) {
- delete IDATASections[i];
- }
-
- for (unsigned i = 0; i < AutosSections.size(); i++) {
- delete AutosSections[i];
- }
-
- for (unsigned i = 0; i < ROSections.size(); i++) {
- delete ROSections[i];
- }
-
+ for (unsigned i = 0; i < BSSSections.size(); i++)
+ delete BSSSections[i];
+ for (unsigned i = 0; i < IDATASections.size(); i++)
+ delete IDATASections[i];
+ for (unsigned i = 0; i < AutosSections.size(); i++)
+ delete AutosSections[i];
+ for (unsigned i = 0; i < ROSections.size(); i++)
+ delete ROSections[i];
delete ExternalVarDecls;
delete ExternalVarDefs;
}
@@ -276,8 +267,7 @@
if (SectName.compare(0, AddrStr.length(), AddrStr) == 0) {
std::string SectAddr = SectName.substr(AddrStr.length());
S = CreateSectionForGlobal(GV, SectAddr);
- }
- else {
+ } else {
S = CreateSectionForGlobal(GV);
}
} else {