Fix invalid C++ on cast (#8113)

Signed-off-by: Pawel Klopotek <pklopotek@internships.antmicro.com>
This commit is contained in:
Pawel Klopotek 2026-08-19 08:29:29 +02:00 committed by GitHub
parent 06ee8b7261
commit 7628a540af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 60 additions and 0 deletions

View File

@ -534,6 +534,11 @@ class TaskVisitor final : public VNVisitor {
} }
postRhsp->dtypeFrom(outPinp); postRhsp->dtypeFrom(outPinp);
} }
if (VN_IS(outPinp, IToRD) || VN_IS(outPinp, ISToRD)) {
outPinp = VN_AS(outPinp, NodeUniop)->lhsp();
postRhsp = new AstRToIRoundS{pinp->fileline(), postRhsp};
postRhsp->dtypeFrom(outPinp);
}
// Put output assignment AFTER function call // Put output assignment AFTER function call
AstNodeExpr* const outPinClonep AstNodeExpr* const outPinClonep
= pureCheck ? outPinp->cloneTreePure(true) : outPinp->cloneTree(true); = pureCheck ? outPinp->cloneTreePure(true) : outPinp->cloneTree(true);

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# 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-FileCopyrightText: 2026 Wilson Snyder
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
import vltest_bootstrap
test.scenarios('simulator')
test.compile()
test.execute()
test.passes()

View File

@ -0,0 +1,37 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2026 Antmicro
// SPDX-License-Identifier: CC0-1.0
// verilog_format: off
`define stop $stop
`define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got='h%x exp='h%x\n", `__FILE__,`__LINE__, (gotv), (expv)); `stop; end while(0);
// verilog_format: on
module t;
bit unsigned [3:0] dst_u2s;
bit signed [3:0] dst_s2s;
bit unsigned [11:0] dst_u2l;
bit signed [11:0] dst_s2l;
real src_r;
task cp_r(output real dst, input real src);
dst = src;
endtask
initial begin
src_r = -7.0;
cp_r(dst_u2s, src_r);
`checkh(dst_u2s, 4'h9);
cp_r(dst_s2s, src_r);
`checkh(dst_s2s, -7);
cp_r(dst_u2l, src_r);
`checkh(dst_u2l, 12'hff9);
cp_r(dst_s2l, src_r);
`checkh(dst_s2l, -7);
$write("*-* All Finished *-*\n");
$finish;
end
endmodule