Skip to content

Commit dfc4e12

Browse files
authored
Merge pull request #612 from diffblue/benchmark-syntax-fixes
Fix mismatching parentheses in benchmarks
2 parents 6187644 + 9d527db commit dfc4e12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Benchmarks/i2c_10.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ module i2cStrech #(localparam divider = 4000, localparam CBITS = 14) (input clk,
3333
data_clk = 0;
3434
end
3535
end
36-
p1: assert property (@(posedge clk) s_eventually (rst == 1 || scl_not_ena == 1 || stretch == 1))) ;
36+
p1: assert property (@(posedge clk) s_eventually (rst == 1 || scl_not_ena == 1 || stretch == 1)) ;
3737
//F G (rst = F & scl_not_ena = F) -> G F (stretch = T)
3838
endmodule

examples/Benchmarks/i2c_2.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ module i2cStrech #(localparam divider = 250, localparam CBITS = 10) (input clk,
3333
data_clk = 0;
3434
end
3535
end
36-
p1: assert property (@(posedge clk) s_eventually (rst == 1 || scl_not_ena == 1 || stretch == 1))) ;
36+
p1: assert property (@(posedge clk) s_eventually (rst == 1 || scl_not_ena == 1 || stretch == 1)) ;
3737
//F G (rst = F & scl_not_ena = F) -> G F (stretch = T)
3838
endmodule

0 commit comments

Comments
 (0)