Home
last modified time | relevance | path

Searched refs:condE (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp98 Expr *condE = S->getCond(); in VisitIfStmt() local
99 if (!condE) in VisitIfStmt()
101 if (hasSideEffects(condE, Ctx)) in VisitIfStmt()
110 Expr *condE = S->getCond(); in VisitWhileStmt() local
111 if (!condE) in VisitWhileStmt()
113 if (hasSideEffects(condE, Ctx)) in VisitWhileStmt()
120 Expr *condE = S->getCond(); in VisitDoStmt() local
121 if (!condE) in VisitDoStmt()
123 if (hasSideEffects(condE, Ctx)) in VisitDoStmt()
/llvm-project-15.0.7/llvm/test/Transforms/JumpThreading/
H A Dstatic-profile.ll112 %condE = icmp eq i32 %v, 3
113 br i1 %condE, label %exit, label %latch
115 ; CHECK: br i1 %condE, label %exit, label %latch{{$}}