r182189 - Removed invalid character.

Jordan Rose jordan_rose at apple.com
Fri May 17 21:51:01 PDT 2013


Thank you, sorry about that!


On May 17, 2013, at 21:32 , Serge Pavlov <sepavloff at gmail.com> wrote:

> 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);
>     }
> 
> 
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits





More information about the cfe-commits mailing list