Skip to content

Commit

Permalink
chore: Hide the show_ssa and show_brillig flags (#2171)
Browse files Browse the repository at this point in the history
chore: hide the `show_ssa` and `show_brillig` flags
  • Loading branch information
TomAFrench authored Aug 4, 2023
1 parent fc98b26 commit efec20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ pub use program::CompiledProgram;
#[derive(Args, Clone, Debug, Default, Serialize, Deserialize)]
pub struct CompileOptions {
/// Emit debug information for the intermediate SSA IR
#[arg(long)]
#[arg(long, hide = true)]
pub show_ssa: bool,

#[arg(long)]
#[arg(long, hide = true)]
pub show_brillig: bool,

/// Display the ACIR for compiled circuit
Expand Down

0 comments on commit efec20a

Please sign in to comment.