From: Ahmed Bougacha Date: Tue, 19 Apr 2016 17:54:24 +0000 (+0000) Subject: [CodeGen] Fix whitespace. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bdf0c75af06220c58203261de66859dbe0cf9520;p=clang [CodeGen] Fix whitespace. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266783 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/TargetInfo.cpp b/lib/CodeGen/TargetInfo.cpp index 145ada3c18..a0cc783187 100644 --- a/lib/CodeGen/TargetInfo.cpp +++ b/lib/CodeGen/TargetInfo.cpp @@ -4472,7 +4472,7 @@ ABIArgInfo AArch64ABIInfo::classifyArgumentType(QualType Ty) const { if (isIllegalVectorType(Ty)) { uint64_t Size = getContext().getTypeSize(Ty); // Android promotes <2 x i8> to i16, not i32 - if(isAndroid() && (Size <= 16)) { + if (isAndroid() && (Size <= 16)) { llvm::Type *ResType = llvm::Type::getInt16Ty(getVMContext()); return ABIArgInfo::getDirect(ResType); }