]> granicus.if.org Git - clang/commitdiff
[CodeGen] Fix whitespace. NFC.
authorAhmed Bougacha <ahmed.bougacha@gmail.com>
Tue, 19 Apr 2016 17:54:24 +0000 (17:54 +0000)
committerAhmed Bougacha <ahmed.bougacha@gmail.com>
Tue, 19 Apr 2016 17:54:24 +0000 (17:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266783 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TargetInfo.cpp

index 145ada3c18bff05f19abf9bcc544fc81050f3df6..a0cc78318718fe28a58682ebd1f0efc6f12a0cb5 100644 (file)
@@ -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);
     }