verilator icon indicating copy to clipboard operation
verilator copied to clipboard

Fix firing event inside class causing internal error

Open wsnyder opened this issue 1 year ago • 0 comments

Firing an event inside a class method caused a fault.

class Cls;
  event e;
  task trig_e();
    ->> e;
  endtask
endclass

The next commit will include a test (still failing), with a new assertion that fails instead of a segfault. We need to fix to avoid the assertion.

Maybe @gezalore or @kozdra if you have a chance to look at it?

wsnyder avatar Nov 09 '24 14:11 wsnyder