Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#![warn(unreachable_pub)]
#![warn(clippy::semicolon_if_nothing_returned)]

use clap::builder::ArgPredicate;
use clap::Args;
use fm::FileId;
use noirc_abi::FunctionSignature;
Expand Down Expand Up @@ -40,7 +41,7 @@ pub struct CompileOptions {
pub deny_warnings: bool,

/// Display output of `println` statements
#[arg(long)]
#[arg(long, default_value_if("prover_name", ArgPredicate::IsPresent, "true"))]
Comment thread
jfecher marked this conversation as resolved.
Outdated
pub show_output: bool,

/// Compile and optimize using the new experimental SSA pass
Expand Down