V0.9: Update some warning messages

Update some of the tgt-vvp warning messages.
This commit is contained in:
Cary R 2010-12-14 14:07:43 -08:00 committed by Stephen Williams
parent e5e2acfd24
commit f1cfd624cb
2 changed files with 5 additions and 4 deletions

View File

@ -68,7 +68,8 @@ void draw_switch_in_scope(ivl_switch_t sw)
break;
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));
vvp_errors += 1;
return;

View File

@ -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
* support <variable_id>_<idx> access any more. We need real
* array specific opcodes (%assign/ar, etc.). */
fprintf(stderr, "%s:%u: vvp-tgt sorry: non-blocking assignment "
"to a real array word is not supported.\n",
fprintf(stderr, "%s:%u: tgt-vvp sorry: non-blocking assignment "
"to a real array word is not supported in V0.9.\n",
ivl_expr_file(rval), ivl_expr_lineno(rval));
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) ||
(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),
ivl_expr_lineno(rval), command_name);
exit(1);