Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 1 | //==- UninitializedValues.cpp - Find Unintialized Values --------*- C++ --*-==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Ted Kremenek and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements Uninitialized Values analysis for source-level CFGs. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Analysis/UninitializedValues.h" |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/CFGStmtVisitor.h" |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 16 | #include "clang/Analysis/LocalCheckers.h" |
| 17 | #include "clang/Basic/Diagnostic.h" |
| 18 | #include "clang/AST/ASTContext.h" |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 19 | #include "DataflowSolver.h" |
| 20 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallPtrSet.h" |
| 22 | |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 25 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 26 | // Dataflow initialization logic. |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 28 | |
| 29 | namespace { |
| 30 | |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 31 | class RegisterDeclsAndExprs : public CFGStmtVisitor<RegisterDeclsAndExprs> { |
Ted Kremenek | 3e03975 | 2007-09-17 17:14:52 +0000 | [diff] [blame] | 32 | UninitializedValues::AnalysisDataTy& AD; |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 33 | public: |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 34 | RegisterDeclsAndExprs(UninitializedValues::AnalysisDataTy& ad) : AD(ad) {} |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 35 | |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 36 | void VisitBlockVarDecl(BlockVarDecl* VD) { |
| 37 | if (AD.VMap.find(VD) == AD.VMap.end()) |
| 38 | AD.VMap[VD] = AD.NumDecls++; |
| 39 | } |
| 40 | |
| 41 | void VisitDeclChain(ScopedDecl* D) { |
| 42 | for (; D != NULL; D = D->getNextDeclarator()) |
| 43 | if (BlockVarDecl* VD = dyn_cast<BlockVarDecl>(D)) |
| 44 | VisitBlockVarDecl(VD); |
Ted Kremenek | 3e03975 | 2007-09-17 17:14:52 +0000 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | void BlockStmt_VisitExpr(Expr* E) { |
| 48 | if (AD.EMap.find(E) == AD.EMap.end()) |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 49 | AD.EMap[E] = AD.NumBlockExprs++; |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 50 | |
| 51 | Visit(E); |
| 52 | } |
| 53 | |
Ted Kremenek | 68447a6 | 2007-09-18 20:59:00 +0000 | [diff] [blame^] | 54 | void VisitDeclRefExpr(DeclRefExpr* DR) { VisitDeclChain(DR->getDecl()); } |
| 55 | void VisitDeclStmt(DeclStmt* S) { VisitDeclChain(S->getDecl()); } |
| 56 | void VisitStmt(Stmt* S) { VisitChildren(S); } |
| 57 | void operator()(Stmt* S) { BlockStmt_Visit(S); } |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | } // end anonymous namespace |
| 61 | |
| 62 | void UninitializedValues::InitializeValues(const CFG& cfg) { |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 63 | RegisterDeclsAndExprs R(this->getAnalysisData()); |
Ted Kremenek | 68447a6 | 2007-09-18 20:59:00 +0000 | [diff] [blame^] | 64 | cfg.VisitBlockStmts(R); |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 67 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 68 | // Transfer functions. |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 69 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 70 | |
| 71 | namespace { |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 72 | |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 73 | class TransferFuncs : public CFGStmtVisitor<TransferFuncs,bool> { |
| 74 | UninitializedValues::ValTy V; |
Ted Kremenek | 3e03975 | 2007-09-17 17:14:52 +0000 | [diff] [blame] | 75 | UninitializedValues::AnalysisDataTy& AD; |
Ted Kremenek | e6148f3 | 2007-09-17 21:59:08 +0000 | [diff] [blame] | 76 | bool InitWithAssigns; |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 77 | public: |
Ted Kremenek | e6148f3 | 2007-09-17 21:59:08 +0000 | [diff] [blame] | 78 | TransferFuncs(UninitializedValues::AnalysisDataTy& ad, |
| 79 | bool init_with_assigns=true) : |
| 80 | AD(ad), InitWithAssigns(init_with_assigns) { |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 81 | V.resetValues(AD); |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | UninitializedValues::ValTy& getVal() { return V; } |
Ted Kremenek | 3e03975 | 2007-09-17 17:14:52 +0000 | [diff] [blame] | 85 | |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 86 | bool VisitDeclRefExpr(DeclRefExpr* DR); |
| 87 | bool VisitBinaryOperator(BinaryOperator* B); |
| 88 | bool VisitUnaryOperator(UnaryOperator* U); |
| 89 | bool VisitStmt(Stmt* S); |
| 90 | bool VisitCallExpr(CallExpr* C); |
| 91 | bool BlockStmt_VisitExpr(Expr* E); |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 92 | bool VisitDeclStmt(DeclStmt* D); |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 93 | |
| 94 | static inline bool Initialized() { return true; } |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 95 | static inline bool Uninitialized() { return false; } |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 96 | }; |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 97 | |
| 98 | |
| 99 | bool TransferFuncs::VisitDeclRefExpr(DeclRefExpr* DR) { |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 100 | if (BlockVarDecl* VD = dyn_cast<BlockVarDecl>(DR->getDecl())) { |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 101 | assert ( AD.VMap.find(VD) != AD.VMap.end() && "Unknown VarDecl."); |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 102 | if (AD.Observer) |
| 103 | AD.Observer->ObserveDeclRefExpr(V,AD,DR,VD); |
| 104 | |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 105 | return V.DeclBV[ AD.VMap[VD] ]; |
| 106 | } |
| 107 | else |
| 108 | return Initialized(); |
| 109 | } |
| 110 | |
| 111 | bool TransferFuncs::VisitBinaryOperator(BinaryOperator* B) { |
| 112 | if (CFG::hasImplicitControlFlow(B)) { |
| 113 | assert ( AD.EMap.find(B) != AD.EMap.end() && "Unknown block-level expr."); |
| 114 | return V.ExprBV[ AD.EMap[B] ]; |
| 115 | } |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 116 | |
| 117 | if (B->isAssignmentOp()) { |
| 118 | // Get the Decl for the LHS, if any |
| 119 | for (Stmt* S = B->getLHS() ;; ) { |
| 120 | if (ParenExpr* P = dyn_cast<ParenExpr>(S)) |
| 121 | S = P->getSubExpr(); |
| 122 | else if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(S)) |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 123 | if (BlockVarDecl* VD = dyn_cast<BlockVarDecl>(DR->getDecl())) { |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 124 | assert ( AD.VMap.find(VD) != AD.VMap.end() && "Unknown VarDecl."); |
Ted Kremenek | e6148f3 | 2007-09-17 21:59:08 +0000 | [diff] [blame] | 125 | |
| 126 | if(InitWithAssigns) { |
| 127 | // Pseudo-hack to prevent cascade of warnings. If the RHS uses |
| 128 | // an uninitialized value, then we are already going to flag a warning |
| 129 | // related to the "cause". Thus, propogating uninitialized doesn't |
| 130 | // make sense, since we are just adding extra messages that don't |
| 131 | // contribute to diagnosing the bug. In InitWithAssigns mode |
| 132 | // we unconditionally set the assigned variable to Initialized to |
| 133 | // prevent Uninitialized propogation. |
| 134 | return V.DeclBV[AD.VMap[VD]] = Initialized(); |
| 135 | } |
| 136 | else |
| 137 | return V.DeclBV[ AD.VMap[VD] ] = Visit(B->getRHS()); |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 138 | } |
Ted Kremenek | e6148f3 | 2007-09-17 21:59:08 +0000 | [diff] [blame] | 139 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 140 | break; |
| 141 | } |
| 142 | } |
| 143 | |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 144 | return VisitStmt(B); |
| 145 | } |
| 146 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 147 | bool TransferFuncs::VisitDeclStmt(DeclStmt* S) { |
| 148 | bool x = Initialized(); |
| 149 | |
| 150 | for (ScopedDecl* D = S->getDecl(); D != NULL; D = D->getNextDeclarator()) |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 151 | if (BlockVarDecl* VD = dyn_cast<BlockVarDecl>(D)) |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 152 | if (Stmt* I = VD->getInit()) { |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 153 | assert ( AD.EMap.find(cast<Expr>(I)) != |
| 154 | AD.EMap.end() && "Unknown Expr."); |
| 155 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 156 | assert ( AD.VMap.find(VD) != AD.VMap.end() && "Unknown VarDecl."); |
Ted Kremenek | e6148f3 | 2007-09-17 21:59:08 +0000 | [diff] [blame] | 157 | x = V.ExprBV[ AD.EMap[cast<Expr>(I)] ]; |
| 158 | V.DeclBV[ AD.VMap[VD] ] = x; |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | return x; |
| 162 | } |
| 163 | |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 164 | bool TransferFuncs::VisitCallExpr(CallExpr* C) { |
| 165 | VisitStmt(C); |
| 166 | return Initialized(); |
| 167 | } |
| 168 | |
| 169 | bool TransferFuncs::VisitUnaryOperator(UnaryOperator* U) { |
| 170 | switch (U->getOpcode()) { |
| 171 | case UnaryOperator::AddrOf: { |
| 172 | // Blast through parentheses and find the decl (if any). Treat it |
| 173 | // as initialized from this point forward. |
| 174 | for (Stmt* S = U->getSubExpr() ;; ) |
| 175 | if (ParenExpr* P = dyn_cast<ParenExpr>(S)) |
| 176 | S = P->getSubExpr(); |
| 177 | else if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(S)) { |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 178 | if (BlockVarDecl* VD = dyn_cast<BlockVarDecl>(DR->getDecl())) { |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 179 | assert ( AD.VMap.find(VD) != AD.VMap.end() && "Unknown VarDecl."); |
| 180 | V.DeclBV[ AD.VMap[VD] ] = Initialized(); |
| 181 | } |
| 182 | break; |
| 183 | } |
| 184 | else { |
| 185 | // Evaluate the transfer function for subexpressions, even |
| 186 | // if we cannot reason more deeply about the &-expression. |
| 187 | return Visit(U->getSubExpr()); |
| 188 | } |
| 189 | |
| 190 | return Initialized(); |
| 191 | } |
| 192 | |
| 193 | default: |
| 194 | return Visit(U->getSubExpr()); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | bool TransferFuncs::VisitStmt(Stmt* S) { |
| 199 | bool x = Initialized(); |
| 200 | |
| 201 | // We don't stop at the first subexpression that is Uninitialized because |
| 202 | // evaluating some subexpressions may result in propogating "Uninitialized" |
| 203 | // or "Initialized" to variables referenced in the other subexpressions. |
| 204 | for (Stmt::child_iterator I=S->child_begin(), E=S->child_end(); I!=E; ++I) |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 205 | if (Visit(*I) == Uninitialized()) |
| 206 | x = Uninitialized(); |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 207 | |
| 208 | return x; |
| 209 | } |
| 210 | |
| 211 | bool TransferFuncs::BlockStmt_VisitExpr(Expr* E) { |
| 212 | assert ( AD.EMap.find(E) != AD.EMap.end() ); |
| 213 | return V.ExprBV[ AD.EMap[E] ] = Visit(E); |
| 214 | } |
| 215 | |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 216 | } // end anonymous namespace |
| 217 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 218 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 219 | // Merge operator. |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 220 | // |
| 221 | // In our transfer functions we take the approach that any |
| 222 | // combination of unintialized values, e.g. Unitialized + ___ = Unitialized. |
| 223 | // |
| 224 | // Merges take the opposite approach. |
| 225 | // |
Ted Kremenek | 68447a6 | 2007-09-18 20:59:00 +0000 | [diff] [blame^] | 226 | // In the merge of dataflow values we prefer unsoundness, and |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 227 | // prefer false negatives to false positives. At merges, if a value for a |
| 228 | // tracked Decl is EVER initialized in any of the predecessors we treat it as |
| 229 | // initialized at the confluence point. |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 230 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 231 | |
| 232 | namespace { |
| 233 | struct Merge { |
| 234 | void operator()(UninitializedValues::ValTy& Dst, |
| 235 | UninitializedValues::ValTy& Src) { |
Ted Kremenek | 68447a6 | 2007-09-18 20:59:00 +0000 | [diff] [blame^] | 236 | assert (Dst.DeclBV.size() == Src.DeclBV.size() && "BV sizes do not match."); |
| 237 | assert (Dst.ExprBV.size() == Src.ExprBV.size() && "BV sizes do not match."); |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 238 | |
Ted Kremenek | 68447a6 | 2007-09-18 20:59:00 +0000 | [diff] [blame^] | 239 | Dst.DeclBV |= Src.DeclBV; |
| 240 | Dst.ExprBV |= Src.ExprBV; |
Ted Kremenek | 334b30a | 2007-09-17 18:31:23 +0000 | [diff] [blame] | 241 | |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 242 | } |
| 243 | }; |
| 244 | } // end anonymous namespace |
| 245 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 246 | //===----------------------------------------------------------------------===// |
| 247 | // Unitialized values checker. Scan an AST and flag variable uses |
| 248 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 249 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 250 | UninitializedValues_ValueTypes::ObserverTy::~ObserverTy() {} |
| 251 | |
| 252 | namespace { |
| 253 | |
| 254 | class UninitializedValuesChecker : public UninitializedValues::ObserverTy { |
| 255 | ASTContext &Ctx; |
| 256 | Diagnostic &Diags; |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 257 | llvm::SmallPtrSet<BlockVarDecl*,10> AlreadyWarned; |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 258 | |
| 259 | public: |
| 260 | UninitializedValuesChecker(ASTContext &ctx, Diagnostic &diags) |
| 261 | : Ctx(ctx), Diags(diags) {} |
| 262 | |
| 263 | virtual void ObserveDeclRefExpr(UninitializedValues::ValTy& V, |
| 264 | UninitializedValues::AnalysisDataTy& AD, |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 265 | DeclRefExpr* DR, BlockVarDecl* VD) { |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 266 | |
| 267 | assert ( AD.VMap.find(VD) != AD.VMap.end() && "Unknown VarDecl."); |
| 268 | if (V.DeclBV[ AD.VMap[VD] ] == TransferFuncs::Uninitialized()) |
| 269 | if (AlreadyWarned.insert(VD)) |
| 270 | Diags.Report(DR->getSourceRange().Begin(), diag::warn_uninit_val); |
| 271 | } |
| 272 | }; |
| 273 | |
| 274 | } // end anonymous namespace |
| 275 | |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 276 | namespace clang { |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 277 | |
| 278 | void CheckUninitializedValues(CFG& cfg, ASTContext &Ctx, Diagnostic &Diags) { |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 279 | |
| 280 | typedef DataflowSolver<UninitializedValues,TransferFuncs,Merge> Solver; |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 281 | |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 282 | // Compute the unitialized values information. |
| 283 | UninitializedValues U; |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 284 | Solver S(U); |
Ted Kremenek | 3871d8e | 2007-09-17 19:59:27 +0000 | [diff] [blame] | 285 | S.runOnCFG(cfg); |
| 286 | |
| 287 | // Scan for DeclRefExprs that use uninitialized values. |
| 288 | UninitializedValuesChecker Observer(Ctx,Diags); |
| 289 | U.getAnalysisData().Observer = &Observer; |
| 290 | |
| 291 | for (CFG::iterator I=cfg.begin(), E=cfg.end(); I!=E; ++I) |
Ted Kremenek | 7f49f50 | 2007-09-14 22:49:21 +0000 | [diff] [blame] | 292 | S.runOnBlock(&*I); |
| 293 | } |
Ted Kremenek | 0a03ce6 | 2007-09-17 20:49:30 +0000 | [diff] [blame] | 294 | |
| 295 | } |