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
diff --git a/CodeGen/CGExprScalar.cpp b/CodeGen/CGExprScalar.cpp
index 6bdcc93..9c2aa36 100644
--- a/CodeGen/CGExprScalar.cpp
+++ b/CodeGen/CGExprScalar.cpp
@@ -293,7 +293,7 @@
 //===----------------------------------------------------------------------===//
 
 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*/,