diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-24 16:24:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-24 16:24:49 +0000 |
commit | dfce2a51a78455c915722bc05f07c41e600220c9 (patch) | |
tree | 6afe66a73ded7cd737da9438de812454bcf136d9 /CodeGen | |
parent | 7f02f721d48772e4eee4fccd8af4f800be1bbc1e (diff) |
print the computation type for compound assignment operators in dumps.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41361 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen')
-rw-r--r-- | CodeGen/CGExprScalar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CGExprScalar.cpp b/CodeGen/CGExprScalar.cpp index 6bdcc930a3..9c2aa36825 100644 --- a/CodeGen/CGExprScalar.cpp +++ b/CodeGen/CGExprScalar.cpp @@ -293,7 +293,7 @@ Value *ScalarExprEmitter::EmitCastExpr(const Expr *E, QualType DestTy) { //===----------------------------------------------------------------------===// Value *ScalarExprEmitter::VisitPrePostIncDec(const UnaryOperator *E, - bool isInc, bool isPre) { + bool isInc, bool isPre) { LValue LV = EmitLValue(E->getSubExpr()); // FIXME: Handle volatile! Value *InVal = CGF.EmitLoadOfLValue(LV/* false*/, |