We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07db35c commit f3f61e5Copy full SHA for f3f61e5
src/libasr/utils.h
@@ -55,9 +55,10 @@ namespace LCompilers {
55
bool always_run; // for unused_functions pass
56
bool inline_external_symbol_calls; // for inline_function_calls pass
57
int64_t unroll_factor; // for loop_unroll pass
58
+ bool fast; // is fast flag enabled.
59
60
PassOptions(): always_run(false), inline_external_symbol_calls(true),
- unroll_factor(32)
61
+ unroll_factor(32), fast(false)
62
{}
63
};
64
0 commit comments