| 140 | |
| 141 | struct ConstFloatNodeType : NodeType { |
| 142 | ConstFloatNodeType(LangModule& mod, double num) |
| 143 | : NodeType(mod, "const-float", "Float Literal"), number(num) { |
| 144 | makePure(); |
| 145 | |
| 146 | setDataOutputs({{"", mod.typeFromName("float")}}); |
| 147 | } |
| 148 | |
| 149 | Result codegen( |
| 150 | size_t /*inputExecID*/, const llvm::DebugLoc& nodeLocation, |
nothing calls this directly
no test coverage detected