| 108 | |
| 109 | struct ConstIntNodeType : NodeType { |
| 110 | ConstIntNodeType(LangModule& mod, int num) |
| 111 | : NodeType(mod, "const-int", "Int literal"), number(num) { |
| 112 | makePure(); |
| 113 | |
| 114 | setDataOutputs({{"", mod.typeFromName("i32")}}); |
| 115 | } |
| 116 | |
| 117 | Result codegen( |
| 118 | size_t /*inputExecID*/, const llvm::DebugLoc& nodeLocation, |
nothing calls this directly
no test coverage detected