diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-12-16 22:32:39 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-12-16 22:32:39 +0000 |
commit | c0a61734df10f26133825f5c1b622e6cd17d5e9a (patch) | |
tree | e9cf4b85201691b79797989c07f1ffe971e1a0fb /clang/lib/Basic/Targets.cpp | |
parent | 375f09f5bf2d63b9db3960f4723d8ee12fa3e25e (diff) | |
download | bcm5719-llvm-c0a61734df10f26133825f5c1b622e6cd17d5e9a.tar.gz bcm5719-llvm-c0a61734df10f26133825f5c1b622e6cd17d5e9a.zip |
Fix 80-column violation and whitespace. No functionality change.
llvm-svn: 146761
Diffstat (limited to 'clang/lib/Basic/Targets.cpp')
-rw-r--r-- | clang/lib/Basic/Targets.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index e02b0db3fe1..1cb20dc9777 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -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"; } }; |