Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Throw

1108   if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) {
1109 // Conditional operator handling can give us a throw expression as a
1111 // br(c ? throw x : y, t, f) -> br(c, br(throw x, t, f), br(y, t, f)
1113 // br(c, throw x, br(y, t, f))
1114 EmitCXXThrowExpr(Throw, /*KeepInsertionPoint*/false);