| 172 | |
| 173 | struct ConstBoolNodeType : NodeType { |
| 174 | ConstBoolNodeType(LangModule& mod, bool num) |
| 175 | : NodeType{mod, "const-bool", "Boolean literal"}, value{num} { |
| 176 | makePure(); |
| 177 | |
| 178 | setDataOutputs({{"", mod.typeFromName("i1")}}); |
| 179 | } |
| 180 | |
| 181 | Result codegen( |
| 182 | size_t /*inputExecID*/, const llvm::DebugLoc& nodeLocation, |
nothing calls this directly
no test coverage detected