| 7 | namespace ftg { |
| 8 | |
| 9 | struct ASTIRNode { |
| 10 | ASTDefNode * |
| 11 | const RDNode IR; |
| 12 | |
| 13 | ASTIRNode(ASTDefNode &AST, const RDNode &IR) : AST(AST), IR(IR) {} |
| 14 | }; |
| 15 | |
| 16 | } // namespace ftg |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected