Fix confusing indent. No behavior change.

llvm-svn: 237546
This commit is contained in:
Nico Weber 2015-05-18 00:00:29 +00:00
parent 569dc65a60
commit 5fb3a4277a
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ bool Type::isSignedIntegerType() const {
bool Type::isSignedIntegerOrEnumerationType() const {
if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType)) {
return BT->getKind() >= BuiltinType::Char_S &&
BT->getKind() <= BuiltinType::Int128;
BT->getKind() <= BuiltinType::Int128;
}
if (const EnumType *ET = dyn_cast<EnumType>(CanonicalType)) {