Changed default for -gshared-loop-index to false.
This commit is contained in:
parent
a391c3ae28
commit
583a31c121
|
|
@ -134,7 +134,7 @@ expression containing an unsized constant number, and unsized constant
|
||||||
numbers are not truncated to integer width.
|
numbers are not truncated to integer width.
|
||||||
.TP 8
|
.TP 8
|
||||||
.B -gshared-loop-index\fI|\fP-gno-shared-loop-index
|
.B -gshared-loop-index\fI|\fP-gno-shared-loop-index
|
||||||
Enable (default) or disable the exclusion of for-loop control variables
|
Enable or disable (default) the exclusion of for-loop control variables
|
||||||
from implicit event_expression lists. When enabled, if a for-loop control
|
from implicit event_expression lists. When enabled, if a for-loop control
|
||||||
variable (loop index) is only used inside the for-loop statement, the
|
variable (loop index) is only used inside the for-loop statement, the
|
||||||
compiler will not include it in an implicit event_expression list it
|
compiler will not include it in an implicit event_expression list it
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ const char*gen_icarus = "icarus-misc";
|
||||||
const char*gen_io_range_error = "io-range-error";
|
const char*gen_io_range_error = "io-range-error";
|
||||||
const char*gen_strict_ca_eval = "no-strict-ca-eval";
|
const char*gen_strict_ca_eval = "no-strict-ca-eval";
|
||||||
const char*gen_strict_expr_width = "no-strict-expr-width";
|
const char*gen_strict_expr_width = "no-strict-expr-width";
|
||||||
const char*gen_shared_loop_index = "shared-loop-index";
|
const char*gen_shared_loop_index = "no-shared-loop-index";
|
||||||
const char*gen_verilog_ams = "no-verilog-ams";
|
const char*gen_verilog_ams = "no-verilog-ams";
|
||||||
|
|
||||||
/* Boolean: true means use a default include dir, false means don't */
|
/* Boolean: true means use a default include dir, false means don't */
|
||||||
|
|
|
||||||
2
main.cc
2
main.cc
|
|
@ -108,7 +108,7 @@ bool gn_assertions_flag = true;
|
||||||
bool gn_io_range_error_flag = true;
|
bool gn_io_range_error_flag = true;
|
||||||
bool gn_strict_ca_eval_flag = false;
|
bool gn_strict_ca_eval_flag = false;
|
||||||
bool gn_strict_expr_width_flag = false;
|
bool gn_strict_expr_width_flag = false;
|
||||||
bool gn_shared_loop_index_flag = true;
|
bool gn_shared_loop_index_flag = false;
|
||||||
bool gn_verilog_ams_flag = false;
|
bool gn_verilog_ams_flag = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue