]> granicus.if.org Git - clang/commitdiff
Fix typo. I also fixed the hard to read case differences, so that no
authorMike Stump <mrs@apple.com>
Wed, 27 May 2009 01:42:21 +0000 (01:42 +0000)
committerMike Stump <mrs@apple.com>
Wed, 27 May 2009 01:42:21 +0000 (01:42 +0000)
one else is tempted to copy the style, incorrectly.

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

lib/CodeGen/CGExprAgg.cpp

index 2a3e21f806d26d08d8bb40a011bae78a1edb4d80..00c1f8dbc1c2dcbdb873691b74ade041e76e84f4 100644 (file)
@@ -37,10 +37,10 @@ class VISIBILITY_HIDDEN AggExprEmitter : public StmtVisitor<AggExprEmitter> {
   bool IgnoreResult;
 
 public:
-  AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool volatileDest,
-                 bool IgnoreResult)
+  AggExprEmitter(CodeGenFunction &cgf, llvm::Value *destPtr, bool v,
+                 bool ignore)
     : CGF(cgf), Builder(CGF.Builder),
-      DestPtr(destPtr), VolatileDest(volatileDest), IgnoreResult(IgnoreResult) {
+      DestPtr(destPtr), VolatileDest(v), IgnoreResult(ignore) {
   }
 
   //===--------------------------------------------------------------------===//