-
Notifications
You must be signed in to change notification settings - Fork 971
Closed
Labels
Description
Version
Yosys 0.44+39 (git sha1 32d770d64, g++ 13.2.0 -Og -fPIC)
On which OS did this happen?
Linux
Reproduction Steps
read_verilog <<EOT
(* blackbox *)
module passthrough(
input wire in, // Input signal
output wire out // Output signal
);
// Assign the output to be the same as the input
assign out = in;
endmodule
EOT
cutpoint =*
I get:
- Executing CUTPOINT pass.
Note that if the module is not a blackbox
:
read_verilog <<EOT
module passthrough(
input wire in, // Input signal
output wire out // Output signal
);
// Assign the output to be the same as the input
assign out = in;
endmodule
EOT
cutpoint =*
- Executing CUTPOINT pass.
Making all outputs of module passthrough cut points, removing module contents.
Expected Behavior
- Executing CUTPOINT pass.
Making all outputs of module passthrough cut points, removing module contents.
Actual Behavior
- Executing CUTPOINT pass.