Fix minor coding style issue in r190296 pointed out by Richard Smith.

llvm-svn: 190390
This commit is contained in:
David Tweed 2013-09-10 08:00:34 +00:00
parent e0bc30284c
commit 6c2149b3e5
1 changed files with 4 additions and 4 deletions

View File

@ -248,10 +248,10 @@ void TargetInfo::setForcedLangOptions(LangOptions &Opts) {
LongDoubleWidth = LongDoubleAlign = 128;
assert(PointerWidth == 32 || PointerWidth == 64);
bool is32BitArch = PointerWidth == 32;
SizeType = is32BitArch ? UnsignedInt : UnsignedLong;
PtrDiffType = is32BitArch ? SignedInt : SignedLong;
IntPtrType = is32BitArch ? SignedInt : SignedLong;
bool Is32BitArch = PointerWidth == 32;
SizeType = Is32BitArch ? UnsignedInt : UnsignedLong;
PtrDiffType = Is32BitArch ? SignedInt : SignedLong;
IntPtrType = Is32BitArch ? SignedInt : SignedLong;
IntMaxType = SignedLongLong;
UIntMaxType = UnsignedLongLong;