Skip to content

Commit f3f61e5

Browse files
committed
Added fast option in PassOptions
1 parent 07db35c commit f3f61e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libasr/utils.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ namespace LCompilers {
5555
bool always_run; // for unused_functions pass
5656
bool inline_external_symbol_calls; // for inline_function_calls pass
5757
int64_t unroll_factor; // for loop_unroll pass
58+
bool fast; // is fast flag enabled.
5859

5960
PassOptions(): always_run(false), inline_external_symbol_calls(true),
60-
unroll_factor(32)
61+
unroll_factor(32), fast(false)
6162
{}
6263
};
6364

0 commit comments

Comments
 (0)