From c59cf0de99622b946d38b6fdbae658d425910b72 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Fri, 31 May 2013 20:12:49 +0000 Subject: [PATCH] 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 --- lib/CodeGen/CGAtomic.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); -- 2.50.1