Searched refs:BodyAndNothrow (Results 1 – 1 of 1) sorted by relevance
3577 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable3581 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) { } in CapturedDecl()3594 Stmt *getBody() const override { return BodyAndNothrow.getPointer(); } in getBody()3595 void setBody(Stmt *B) { BodyAndNothrow.setPointer(B); } in setBody()3597 bool isNothrow() const { return BodyAndNothrow.getInt(); } in isNothrow()3598 void setNothrow(bool Nothrow = true) { BodyAndNothrow.setInt(Nothrow); }