From 49c43037cbd36178484ab0acd0f6b408474a5a2b Mon Sep 17 00:00:00 2001 From: DezlowNG Date: Wed, 19 Oct 2022 20:10:04 +0700 Subject: [PATCH] Add missing description of --fflags argument in Repl --- CLI/Repl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/CLI/Repl.cpp b/CLI/Repl.cpp index aecddf38..06735d19 100644 --- a/CLI/Repl.cpp +++ b/CLI/Repl.cpp @@ -766,6 +766,7 @@ static void displayHelp(const char* argv0) printf(" --profile[=N]: profile the code using N Hz sampling (default 10000) and output results to profile.out\n"); printf(" --timetrace: record compiler time tracing information into trace.json\n"); printf(" --codegen: execute code using native code generation\n"); + printf(" --fflags[=FLAGS], --fflags[True/False]: pass the comma separated flags or enable/disable all available flags.\n"); } static int assertionHandler(const char* expr, const char* file, int line, const char* function)