Removed invalid character.

llvm-svn: 182189
This commit is contained in:
Serge Pavlov 2013-05-18 04:32:15 +00:00
parent 933e5ba722
commit 1112006792
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static void BuildParentMap(MapTy& M, Stmt* S,
// 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);
}