You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[MooreToCore] Add nested moore.conditional support (#8125)
This code adds correct lowering for nested ternary operators like this:
```verilog
module Mod(input a, input b, output logic [1:0] c);
always_comb
c = a ? b ? 2'd0 : 2'd1 : 2'd2;
endmodule
```
0 commit comments