r182189 - Removed invalid character.

Serge Pavlov sepavloff at gmail.com
Fri May 17 21:32:15 PDT 2013


Author: sepavloff
Date: Fri May 17 23:32:15 2013
New Revision: 182189

URL: http://llvm.org/viewvc/llvm-project?rev=182189&view=rev
Log:
Removed invalid character.

Modified:
    cfe/trunk/lib/AST/ParentMap.cpp

Modified: cfe/trunk/lib/AST/ParentMap.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ParentMap.cpp?rev=182189&r1=182188&r2=182189&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ParentMap.cpp (original)
+++ cfe/trunk/lib/AST/ParentMap.cpp Fri May 17 23:32:15 2013
@@ -74,7 +74,7 @@ static void BuildParentMap(MapTy& M, Stm
     // The right thing to do is to give the OpaqueValueExpr its syntactic
     // parent, then not reassign that when traversing the semantic expressions.
     OpaqueValueExpr *OVE = cast<OpaqueValueExpr>(S);
-    if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) {
+    if (OVMode == OV_Transparent || !M[OVE->getSourceExpr()]) {
       M[OVE->getSourceExpr()] = S;
       BuildParentMap(M, OVE->getSourceExpr(), OV_Transparent);
     }





More information about the cfe-commits mailing list