Fixed remaining cases where we check fo wire reg/wire incorrect assignments
authorUdi Finkelstein <github@udifink.com>
Mon, 17 Sep 2018 22:23:40 +0000 (01:23 +0300)
committerUdi Finkelstein <github@udifink.com>
Mon, 17 Sep 2018 22:23:40 +0000 (01:23 +0300)
commitf6fe73b31f6e6d8966ad4ddae860b4d79133cce2
tree1718152be88e472605074eedc6b927c55fe7f454
parent73d426bc879087ca522ca595a8ba921b647fae27
Fixed remaining cases where we check fo wire reg/wire incorrect assignments
on Yosys-generated assignments.
In this case, offending code was:

module top(input in, output out);
function func;
  input arg;
  func = arg;
endfunction
assign out = func(in);
endmodule
frontends/ast/simplify.cc