| 205 | const bool build_pch); |
| 206 | |
| 207 | program_data compile_program(const device& dev, |
| 208 | const std::string& code, |
| 209 | const compile_options options) { |
| 210 | const std::string printable_code { "printf \"" + core::str_hex_escape(code) + "\" | " }; |
| 211 | return compile_input("-", printable_code, dev, options, false); |
| 212 | } |
| 213 | |
| 214 | program_data compile_program_file(const device& dev, |
| 215 | const std::string& filename, |
no test coverage detected