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