From: Ed Schouten Date: Fri, 31 May 2013 20:12:49 +0000 (+0000) Subject: Fix style bug introduced in r183033. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c59cf0de99622b946d38b6fdbae658d425910b72;p=clang 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 ddacdd17ea..1fc4f94d44 100644 --- a/lib/CodeGen/CGAtomic.cpp +++ b/lib/CodeGen/CGAtomic.cpp @@ -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();