sim: igen: add missing newline to various error messages

The error() function expects a trailing newline in its message.
Most callers do this already, so adding it to the few that don't.
This commit is contained in:
Mike Frysinger 2022-11-10 00:29:27 +07:00
parent 959550953e
commit 3abad2f6a6
5 changed files with 6 additions and 6 deletions

View File

@ -180,7 +180,7 @@ support_c_function (lf *file, function_entry * function, void *data)
lf_printf (file, "{\n");
lf_indent (file, +2);
if (function->code == NULL)
error (function->line, "Function without body (or null statement)");
error (function->line, "Function without body (or null statement)\n");
lf_print__line_ref (file, function->code->line);
table_print_code (file, function->code);
if (function->is_internal)

View File

@ -987,7 +987,7 @@ gen_entry_expand_opcode (gen_entry *table,
}
if (bit == NULL && t == NULL)
error (instruction->line,
"Conditional `%s' of field `%s' isn't expanded",
"Conditional `%s' of field `%s' isn't expanded\n",
condition->string, field->val_string);
switch (condition->test)
{

View File

@ -914,7 +914,7 @@ static table_entry *
parse_macro_record (table *file, table_entry *record)
{
#if 1
error (record->line, "Macros are not implemented");
error (record->line, "Macros are not implemented\n");
#else
/* parse the define record */
if (record->nr_fields < nr_define_fields)

View File

@ -246,7 +246,7 @@ name2i (const char *names, const name_map * map)
if (curr->i >= 0)
return curr->i;
else
error (NULL, "%s contains no valid names", names);
error (NULL, "%s contains no valid names\n", names);
return 0;
}

View File

@ -64,7 +64,7 @@ do { \
line_ref line; \
line.file_name = filter_filename (__FILE__); \
line.line_nr = __LINE__; \
error (&line, EXPRESSION); \
error (&line, EXPRESSION "\n"); \
} while (0)
#define ASSERT(EXPRESSION) \
@ -73,7 +73,7 @@ do { \
line_ref line; \
line.file_name = filter_filename (__FILE__); \
line.line_nr = __LINE__; \
error(&line, "assertion failed - %s\n", #EXPRESSION); \
error (&line, "assertion failed - %s\n", #EXPRESSION); \
} \
} while (0)