Fix style bug introduced in r183033.

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
diff --git a/lib/CodeGen/CGAtomic.cpp b/lib/CodeGen/CGAtomic.cpp
index ddacdd1..1fc4f94 100644
--- a/lib/CodeGen/CGAtomic.cpp
+++ b/lib/CodeGen/CGAtomic.cpp
@@ -320,8 +320,7 @@
 
 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();