Searched refs:condE (Results 1 – 2 of 2) sorted by relevance
98 Expr *condE = S->getCond(); in VisitIfStmt() local99 if (!condE) in VisitIfStmt()101 if (hasSideEffects(condE, Ctx)) in VisitIfStmt()110 Expr *condE = S->getCond(); in VisitWhileStmt() local111 if (!condE) in VisitWhileStmt()113 if (hasSideEffects(condE, Ctx)) in VisitWhileStmt()120 Expr *condE = S->getCond(); in VisitDoStmt() local121 if (!condE) in VisitDoStmt()123 if (hasSideEffects(condE, Ctx)) in VisitDoStmt()
112 %condE = icmp eq i32 %v, 3113 br i1 %condE, label %exit, label %latch115 ; CHECK: br i1 %condE, label %exit, label %latch{{$}}