Fix arguments in non-static method call (#3547) (#3582)

This commit is contained in:
Gustav Svensk 2022-09-11 18:33:31 +02:00 committed by GitHub
parent 47e64535d6
commit 47262cd4ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 50 additions and 0 deletions

View File

@ -3218,6 +3218,7 @@ private:
nodep->dtypeFrom(ftaskp);
nodep->classOrPackagep(classp);
if (VN_IS(ftaskp, Task)) nodep->makeStatement();
processFTaskRefArgs(nodep);
}
return;
}

View File

@ -0,0 +1,21 @@
#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2003 by Wilson Snyder. This program is free software; you
# can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
scenarios(simulator => 1);
compile(
);
execute(
check_finished => 1,
);
ok(1);
1;

View File

@ -0,0 +1,28 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2022 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t;
class T;
function automatic void print_str(input string a_string);
$display(a_string);
endfunction
static function automatic void static_print_str(input string a_string);
$display(a_string);
endfunction
endclass
initial begin
T t_c = new;
t_c.print_str("function though member");
t_c.static_print_str("static function through member");
T::static_print_str("static function through class");
$write("*-* All Finished *-*\n");
$finish;
end
endmodule