File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -3878,9 +3878,6 @@ void UhdmAst::process_bit_select()
38783878void UhdmAst::process_part_select ()
38793879{
38803880 current_node = make_ast_node (AST::AST_IDENTIFIER);
3881- vpiHandle parent_h = vpi_handle (vpiParent, obj_h);
3882- current_node->str = get_name (parent_h);
3883- vpi_release_handle (parent_h);
38843881 auto range_node = new AST::AstNode (AST::AST_RANGE);
38853882 range_node->filename = current_node->filename ;
38863883 range_node->location = current_node->location ;
@@ -3891,9 +3888,6 @@ void UhdmAst::process_part_select()
38913888void UhdmAst::process_indexed_part_select ()
38923889{
38933890 current_node = make_ast_node (AST::AST_IDENTIFIER);
3894- vpiHandle parent_h = vpi_handle (vpiParent, obj_h);
3895- current_node->str = get_name (parent_h);
3896- vpi_release_handle (parent_h);
38973891 // TODO: check if there are other types, for now only handle 1 and 2 (+: and -:)
38983892 auto indexed_part_select_type = vpi_get (vpiIndexedPartSelectType, obj_h) == 1 ? AST::AST_ADD : AST::AST_SUB;
38993893 auto range_node = new AST::AstNode (AST::AST_RANGE);
You can’t perform that action at this time.
0 commit comments