Searched refs:condE (Results 1 – 2 of 2) sorted by relevance
100 Expr *condE = S->getCond(); in VisitIfStmt() local101 if (!condE) in VisitIfStmt()103 if (hasSideEffects(condE, Ctx)) in VisitIfStmt()112 Expr *condE = S->getCond(); in VisitWhileStmt() local113 if (!condE) in VisitWhileStmt()115 if (hasSideEffects(condE, Ctx)) in VisitWhileStmt()122 Expr *condE = S->getCond(); in VisitDoStmt() local123 if (!condE) in VisitDoStmt()125 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{{$}}