]> granicus.if.org Git - clang/commitdiff
Fix 80-column violation and whitespace. No functionality change.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 16 Dec 2011 22:32:39 +0000 (22:32 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 16 Dec 2011 22:32:39 +0000 (22:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146761 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/Targets.cpp

index e02b0db3fe1d8d2a3de31e3359aceb6f1f35c846..1cb20dc97774a48d74f38052a701a3a8d267e429 100644 (file)
@@ -432,13 +432,14 @@ public:
   PS3PPUTargetInfo(const std::string& triple)
     : OSTargetInfo<Target>(triple) {
     this->UserLabelPrefix = "";
-    this->LongWidth = this->LongAlign = this->PointerWidth = this->PointerAlign = 32;
+    this->LongWidth = this->LongAlign = 32;
+    this->PointerWidth = this->PointerAlign = 32;
     this->IntMaxType = TargetInfo::SignedLongLong;
     this->UIntMaxType = TargetInfo::UnsignedLongLong;
     this->Int64Type = TargetInfo::SignedLongLong;
     this->SizeType = TargetInfo::UnsignedInt;
     this->DescriptionString = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-"
-                        "i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32";
+                              "i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32";
   }
 };