| 79 | //----------------------------------------------------------------------------- |
| 80 | |
| 81 | UnaryOperator* Not(const Expr* stmt) |
| 82 | { |
| 83 | return mkUnaryOperator(stmt, UO_LNot, stmt->getType()); |
| 84 | } |
| 85 | //----------------------------------------------------------------------------- |
| 86 | |
| 87 | static UnaryOperator* mkReference(Expr* e, QualType t) |
no test coverage detected