drim/drimc_rs/src/backends/c.rs

10 lines
244 B
Rust

//! Backend for direct generation of C code.
use crate::ir::IR;
/// Generates C code with the same semantics as the intermediate representation. Returns the C
/// source code as a string.
pub fn generate_c(_ir: &IR) -> String {
todo!()
}