V0.9: Update some warning messages
Update some of the tgt-vvp warning messages.
This commit is contained in:
parent
e5e2acfd24
commit
f1cfd624cb
|
|
@ -68,7 +68,8 @@ void draw_switch_in_scope(ivl_switch_t sw)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "%s:%u: sorry: vvp target does not support switch modeling.\n",
|
fprintf(stderr, "%s:%u: tgt-vvp sorry: resistive switch modeling "
|
||||||
|
"is not supported in V0.9.\n",
|
||||||
ivl_switch_file(sw), ivl_switch_lineno(sw));
|
ivl_switch_file(sw), ivl_switch_lineno(sw));
|
||||||
vvp_errors += 1;
|
vvp_errors += 1;
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -630,8 +630,8 @@ static int show_stmt_assign_nb_real(ivl_statement_t net)
|
||||||
/* This method no longer works since variable arrays do not
|
/* This method no longer works since variable arrays do not
|
||||||
* support <variable_id>_<idx> access any more. We need real
|
* support <variable_id>_<idx> access any more. We need real
|
||||||
* array specific opcodes (%assign/ar, etc.). */
|
* array specific opcodes (%assign/ar, etc.). */
|
||||||
fprintf(stderr, "%s:%u: vvp-tgt sorry: non-blocking assignment "
|
fprintf(stderr, "%s:%u: tgt-vvp sorry: non-blocking assignment "
|
||||||
"to a real array word is not supported.\n",
|
"to a real array word is not supported in V0.9.\n",
|
||||||
ivl_expr_file(rval), ivl_expr_lineno(rval));
|
ivl_expr_file(rval), ivl_expr_lineno(rval));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
@ -1201,7 +1201,7 @@ static void force_link_rval(ivl_statement_t net, ivl_expr_t rval)
|
||||||
}
|
}
|
||||||
if (ivl_signal_width(lsig) > ivl_signal_width(rsig) ||
|
if (ivl_signal_width(lsig) > ivl_signal_width(rsig) ||
|
||||||
(part_off_ex && get_number_immediate(part_off_ex) != 0)) {
|
(part_off_ex && get_number_immediate(part_off_ex) != 0)) {
|
||||||
fprintf(stderr, "%s:%u: vvp-tgt sorry: cannot %s signal to "
|
fprintf(stderr, "%s:%u: tgt-vvp sorry: cannot %s signal to "
|
||||||
"a bit/part select.\n", ivl_expr_file(rval),
|
"a bit/part select.\n", ivl_expr_file(rval),
|
||||||
ivl_expr_lineno(rval), command_name);
|
ivl_expr_lineno(rval), command_name);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue