| 1 | use hll_to_ir::{IrGlobalString, IrTypeAlias}; |
| 2 | |
| 3 | pub struct DataSection { |
| 4 | rodata: Vec<String>, |
| 5 | data: Vec<String>, |
| 6 | bss: Vec<String>, |
| 7 | } |
| 8 | |
| 9 | impl DataSection { |
| 10 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected