Fix typo. I also fixed the hard to read case differences, so that no
one else is tempted to copy the style, incorrectly.
llvm-svn: 72448
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp
index 2a3e21f..00c1f8d 100644
--- a/clang/lib/CodeGen/CGExprAgg.cpp
+++ b/clang/lib/CodeGen/CGExprAgg.cpp
@@ -37,10 +37,10 @@
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) {
}
//===--------------------------------------------------------------------===//