You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning_message(NETLIST_ERROR, node->related_ast_node->line_number, node->related_ast_node->file_number, "%s\n", "Instantiating adder where adders do not exist");
149
+
warning_message(NETLIST, node->related_ast_node->line_number, node->related_ast_node->file_number, "%s\n", "Instantiating adder where adders do not exist");
error_message(NETLIST_ERROR, node->line_number, node->file_number, "Parameter %s is not a constant expression\n", node->types.identifier);
783
+
error_message(AST, node->line_number, node->file_number, "Parameter %s is not a constant expression\n", node->types.identifier);
784
784
}
785
785
786
786
free_whole_tree(var_declare);
@@ -793,7 +793,7 @@ long get_size_of_variable(ast_node_t* node, sc_hierarchy* local_ref) {
793
793
break;
794
794
}
795
795
796
-
error_message(NETLIST_ERROR, node->line_number, node->file_number, "Missing declaration of this symbol %s\n", node->types.identifier);
796
+
error_message(AST, node->line_number, node->file_number, "Missing declaration of this symbol %s\n", node->types.identifier);
797
797
} break;
798
798
799
799
case ARRAY_REF: {
@@ -803,7 +803,7 @@ long get_size_of_variable(ast_node_t* node, sc_hierarchy* local_ref) {
803
803
break;
804
804
}
805
805
806
-
error_message(NETLIST_ERROR, node->children[0]->line_number, node->children[0]->file_number, "Missing declaration of this symbol %s\n", node->children[0]->types.identifier);
806
+
error_message(AST, node->children[0]->line_number, node->children[0]->file_number, "Missing declaration of this symbol %s\n", node->children[0]->types.identifier);
warning_message(PARSE_ERROR, (*node)->line_number, (*node)->file_number, "argument is %ld-bits but ODIN limit is %lu-bits \n", voperand_0.size(), ODIN_STD_BITWIDTH);
1071
+
warning_message(AST, (*node)->line_number, (*node)->file_number, "argument is %ld-bits but ODIN limit is %lu-bits \n", voperand_0.size(), ODIN_STD_BITWIDTH);
void_log_message(odin_error error_type, long column, long line_number, long file, bool soft_error, constchar* function_file_name, long function_line, constchar* function_name, constchar* message, ...);
0 commit comments