mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Fix object reference to conditional null : null
This commit is contained in:
parent
5f8c06c805
commit
d3b93a1113
@ -490,7 +490,9 @@ class WidthVisitor final : public VNVisitor {
|
||||
// the expression includes the size of the output too.
|
||||
const AstNodeDType* const thenDTypep = nodep->thenp()->dtypep();
|
||||
const AstNodeDType* const elseDTypep = nodep->elsep()->dtypep();
|
||||
if (thenDTypep->skipRefp() == elseDTypep->skipRefp()) {
|
||||
if (nodep->thenp()->isNull() && nodep->elsep()->isNull()) {
|
||||
nodep->dtypep(m_vup->dtypeNullp());
|
||||
} else if (thenDTypep->skipRefp() == elseDTypep->skipRefp()) {
|
||||
// TODO might need a broader equation, use the Castable function?
|
||||
nodep->dtypeFrom(thenDTypep);
|
||||
} else if (nodep->thenp()->isClassHandleValue()
|
||||
|
@ -35,6 +35,7 @@ module t (/*AUTOARG*/);
|
||||
ExtendCls ext_cls = null;
|
||||
AnotherExtendCls an_ext_cls = null;
|
||||
ExtendExtendCls ext_ext_cls = null;
|
||||
int r;
|
||||
|
||||
cls1 = (cls1 == null) ? cls2 : cls1;
|
||||
if (cls1 != null) $stop;
|
||||
@ -64,6 +65,25 @@ module t (/*AUTOARG*/);
|
||||
cls1 = (ext_ext_cls.f != 4) ? ext_ext_cls : an_ext_cls;
|
||||
if (cls1.f != 5) $stop;
|
||||
|
||||
ext_cls = new(3);
|
||||
r = $random;
|
||||
cls1 = r[0] ? ext_cls : null;
|
||||
if (cls1 != null && cls1.f != 3) $stop;
|
||||
|
||||
ext_cls = new(3);
|
||||
r = $random;
|
||||
cls1 = r[0] ? null : ext_cls;
|
||||
if (cls1 != null && cls1.f != 3) $stop;
|
||||
|
||||
ext_cls = new(3);
|
||||
r = $random;
|
||||
cls1 = r[0] ? null : null;
|
||||
if (cls1 != null) $stop;
|
||||
|
||||
ext_cls = new(3);
|
||||
cls1 = (ext_cls == null) ? null : null;
|
||||
if (cls1 != null) $stop;
|
||||
|
||||
$write("*-* All Finished *-*\n");
|
||||
$finish;
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user