]> granicus.if.org Git - clang/commitdiff
Fix style bug introduced in r183033.
authorEd Schouten <ed@80386.nl>
Fri, 31 May 2013 20:12:49 +0000 (20:12 +0000)
committerEd Schouten <ed@80386.nl>
Fri, 31 May 2013 20:12:49 +0000 (20:12 +0000)
I renamed the function at one point in time, but forgot to fix the
layout of the arguments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@183036 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGAtomic.cpp

index ddacdd17eaa226d876639bafca60ae75ed496ece..1fc4f94d4438d5a1bee70587c23ea3e34be555db 100644 (file)
@@ -320,8 +320,7 @@ EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
 
 static void
 AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args,
-                       bool UseOptimizedLibcall, llvm::Value *Val,
-                       QualType ValTy) {
+                  bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy) {
   if (UseOptimizedLibcall) {
     // Load value and pass it to the function directly.
     unsigned Align = CGF.getContext().getTypeAlignInChars(ValTy).getQuantity();