]> granicus.if.org Git - clang/commitdiff
Fix bad indentation.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 29 May 2013 03:57:23 +0000 (03:57 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Wed, 29 May 2013 03:57:23 +0000 (03:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182821 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGCall.cpp

index b0f460ec0e7b7bfcbc5e573ffadec7787273058d..1ea16fe13a410d6d068e6cf9a48c08236f1ee956 100644 (file)
@@ -1050,10 +1050,10 @@ void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI,
   const ABIArgInfo &RetAI = FI.getReturnInfo();
   switch (RetAI.getKind()) {
   case ABIArgInfo::Extend:
-   if (RetTy->hasSignedIntegerRepresentation())
-     RetAttrs.addAttribute(llvm::Attribute::SExt);
-   else if (RetTy->hasUnsignedIntegerRepresentation())
-     RetAttrs.addAttribute(llvm::Attribute::ZExt);
+    if (RetTy->hasSignedIntegerRepresentation())
+      RetAttrs.addAttribute(llvm::Attribute::SExt);
+    else if (RetTy->hasUnsignedIntegerRepresentation())
+      RetAttrs.addAttribute(llvm::Attribute::ZExt);
     break;
   case ABIArgInfo::Direct:
   case ABIArgInfo::Ignore: