From 625ce1238361bf0d71f317069f4875f24b0a790a Mon Sep 17 00:00:00 2001 From: David Mak Date: Fri, 13 Oct 2023 15:00:39 +0800 Subject: [PATCH] standalone: Update help text for `--emit-llvm` --- nac3standalone/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nac3standalone/src/main.rs b/nac3standalone/src/main.rs index 5ba1436..97d8d9e 100644 --- a/nac3standalone/src/main.rs +++ b/nac3standalone/src/main.rs @@ -48,6 +48,8 @@ struct CommandLineArgs { opt_level: u32, /// Whether to emit LLVM IR at the end of every module. + /// + /// If multithreaded compilation is also enabled, each thread will emit its own module. #[arg(long, default_value_t = false)] emit_llvm: bool,