//! PTX text emission — the `Emit` trait and `PtxWriter`.
//!
//! Every IR node implements [`Emit`], which writes PTX text through
//! [`PtxWriter`]'s formatting helpers. The writer handles indentation,
//! operand formatting, and label generation.
pub use Emit;
pub use PtxWriter;