summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2013-05-29 03:57:23 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2013-05-29 03:57:23 +0000
commitd7bf293eb71df15f6e1923e6e3328d3d095b89bd (patch)
tree80093511f93936e46d0e8cfc46bc8db5d0786214 /clang/lib/CodeGen
parentd11b42aaadc48faea0fc12dd896e2f2b938b0f8d (diff)
downloadbcm5719-llvm-d7bf293eb71df15f6e1923e6e3328d3d095b89bd.tar.gz
bcm5719-llvm-d7bf293eb71df15f6e1923e6e3328d3d095b89bd.zip
Fix bad indentation.
llvm-svn: 182821
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/CGCall.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp
index b0f460ec0e7..1ea16fe13a4 100644
--- a/clang/lib/CodeGen/CGCall.cpp
+++ b/clang/lib/CodeGen/CGCall.cpp
@@ -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:
OpenPOWER on IntegriCloud