aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprAgg.cpp
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-05-27 01:42:21 +0000
committerMike Stump <mrs@apple.com>2009-05-27 01:42:21 +0000
commitff4bf3bd6174f6a02da4ee2efc6064c005295d44 (patch)
tree25bbc5157aaec1593ed83bd1c899b99c02c8b3c9 /lib/CodeGen/CGExprAgg.cpp
parent986477149db76e6d9f8d3c9859c9880c11b680ae (diff)
Fix typo. I also fixed the hard to read case differences, so that no
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
Diffstat (limited to 'lib/CodeGen/CGExprAgg.cpp')
-rw-r--r--lib/CodeGen/CGExprAgg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CGExprAgg.cpp b/lib/CodeGen/CGExprAgg.cpp
index 2a3e21f806..00c1f8dbc1 100644
--- a/lib/CodeGen/CGExprAgg.cpp
+++ b/lib/CodeGen/CGExprAgg.cpp
@@ -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) {
}
//===--------------------------------------------------------------------===//