fixed line endings
authorAnton Yartsev <anton.yartsev@gmail.com>
Fri, 14 Dec 2012 20:28:48 +0000 (20:28 +0000)
committerAnton Yartsev <anton.yartsev@gmail.com>
Fri, 14 Dec 2012 20:28:48 +0000 (20:28 +0000)
llvm-svn: 170238

clang/lib/StaticAnalyzer/Core/ExprEngine.cpp

index 0f5fad1..efb4f72 100644 (file)
@@ -780,28 +780,28 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred,
       break;
     }
 
-    case Stmt::CXXNewExprClass: {\r
-      Bldr.takeNodes(Pred);\r
-      ExplodedNodeSet PostVisit;\r
-      VisitCXXNewExpr(cast<CXXNewExpr>(S), Pred, PostVisit);\r
-      getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);\r
-      Bldr.addNodes(Dst);\r
-      break;\r
-    }\r
-\r
-    case Stmt::CXXDeleteExprClass: {\r
-      Bldr.takeNodes(Pred);\r
-      ExplodedNodeSet PreVisit;\r
-      const CXXDeleteExpr *CDE = cast<CXXDeleteExpr>(S);\r
-      getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);\r
-\r
-      for (ExplodedNodeSet::iterator i = PreVisit.begin(), \r
-                                     e = PreVisit.end(); i != e ; ++i)\r
-        VisitCXXDeleteExpr(CDE, *i, Dst);\r
-\r
-      Bldr.addNodes(Dst);\r
-      break;\r
-    }\r
+    case Stmt::CXXNewExprClass: {
+      Bldr.takeNodes(Pred);
+      ExplodedNodeSet PostVisit;
+      VisitCXXNewExpr(cast<CXXNewExpr>(S), Pred, PostVisit);
+      getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);
+      Bldr.addNodes(Dst);
+      break;
+    }
+
+    case Stmt::CXXDeleteExprClass: {
+      Bldr.takeNodes(Pred);
+      ExplodedNodeSet PreVisit;
+      const CXXDeleteExpr *CDE = cast<CXXDeleteExpr>(S);
+      getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
+
+      for (ExplodedNodeSet::iterator i = PreVisit.begin(), 
+                                     e = PreVisit.end(); i != e ; ++i)
+        VisitCXXDeleteExpr(CDE, *i, Dst);
+
+      Bldr.addNodes(Dst);
+      break;
+    }
       // FIXME: ChooseExpr is really a constant.  We need to fix
       //        the CFG do not model them as explicit control-flow.