diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-05-29 03:57:23 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-05-29 03:57:23 +0000 |
commit | d7bf293eb71df15f6e1923e6e3328d3d095b89bd (patch) | |
tree | 80093511f93936e46d0e8cfc46bc8db5d0786214 /clang/lib/CodeGen/CGCall.cpp | |
parent | d11b42aaadc48faea0fc12dd896e2f2b938b0f8d (diff) | |
download | bcm5719-llvm-d7bf293eb71df15f6e1923e6e3328d3d095b89bd.tar.gz bcm5719-llvm-d7bf293eb71df15f6e1923e6e3328d3d095b89bd.zip |
Fix bad indentation.
llvm-svn: 182821
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 8 |
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: |