| 339 | |
| 340 | struct FloatToIntNodeType : NodeType { |
| 341 | FloatToIntNodeType(LangModule& mod) : NodeType(mod, "floattoint", "convert float to integer") { |
| 342 | makePure(); |
| 343 | |
| 344 | setDataInputs({{"", mod.typeFromName("float")}}); |
| 345 | setDataOutputs({{"", mod.typeFromName("i32")}}); |
| 346 | } |
| 347 | |
| 348 | Result codegen( |
| 349 | size_t /*execInputID*/, const llvm::DebugLoc& nodeLocation, |
nothing calls this directly
no test coverage detected