r183036 - Fix style bug introduced in r183033.
Ed Schouten
ed at 80386.nl
Fri May 31 13:12:50 PDT 2013
Author: ed
Date: Fri May 31 15:12:49 2013
New Revision: 183036
URL: http://llvm.org/viewvc/llvm-project?rev=183036&view=rev
Log:
Fix style bug introduced in r183033.
I renamed the function at one point in time, but forgot to fix the
layout of the arguments.
Modified:
cfe/trunk/lib/CodeGen/CGAtomic.cpp
Modified: cfe/trunk/lib/CodeGen/CGAtomic.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGAtomic.cpp?rev=183036&r1=183035&r2=183036&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGAtomic.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGAtomic.cpp Fri May 31 15:12:49 2013
@@ -320,8 +320,7 @@ EmitValToTemp(CodeGenFunction &CGF, Expr
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();
More information about the cfe-commits
mailing list