Skip to main content

llvm_ir_parser/
lib.rs

1//! Parser for the LLVM IR text format (`.ll` files).
2
3pub mod lexer;
4/// Public API for `parser`.
5pub mod parser;