Skip to content

Commit

Permalink
[clkmgr,dv] Fix type in clkmgr_extclk_vseq
Browse files Browse the repository at this point in the history
This value is generated with a call to get_rand_mubi4_val and it seems
that Xcelium (reasonably!) complains if you try to store it in an int.

Signed-off-by: Rupert Swarbrick <[email protected]>
  • Loading branch information
rswarbrick committed Aug 2, 2023
1 parent 2e048ed commit bdf5e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/ip/clkmgr/dv/env/seq_lib/clkmgr_extclk_vseq.sv
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class clkmgr_extclk_vseq extends clkmgr_base_vseq;
mubi4_t all_clk_byp_ack_non_true;
mubi4_t div_step_down_req_non_true;

int exp_all_clk_byp_ack;
mubi4_t exp_all_clk_byp_ack;

function void post_randomize();
if (mubi_mode == ClkmgrMubiLcHand) begin
Expand Down

0 comments on commit bdf5e83

Please sign in to comment.