| 72 | //----------------------------------------------------------------------------- |
| 73 | |
| 74 | static UnaryOperator* mkUnaryOperator(const Expr* stmt, UnaryOperatorKind kind, QualType type) |
| 75 | { |
| 76 | return UnaryOperator::Create( |
| 77 | GetGlobalAST(), const_cast<Expr*>(stmt), kind, type, VK_PRValue, OK_Ordinary, {}, false, {}); |
| 78 | } |
| 79 | //----------------------------------------------------------------------------- |
| 80 | |
| 81 | UnaryOperator* Not(const Expr* stmt) |
no outgoing calls
no test coverage detected