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
This commit is contained in:
Mike Stump 2009-05-27 01:42:21 +00:00
parent 21d349b3c5
commit 3e97f3b35d
1 changed files with 3 additions and 3 deletions

View 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) {
}
//===--------------------------------------------------------------------===//