MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / DataSection

Class DataSection

crates/ir-to-asm/src/compiler/data_section.rs:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1use hll_to_ir::{IrGlobalString, IrTypeAlias};
2
3pub struct DataSection {
4 rodata: Vec<String>,
5 data: Vec<String>,
6 bss: Vec<String>,
7}
8
9impl DataSection {
10 pub fn new() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected