Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion regression/verilog/system-functions/past1.aig.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CORE
past1.sv
--aig
^\[main\.p0\] ##0 \(\$past\(main\.counter, 0\)\) == 0: FAILURE: property not supported by netlist BMC engine$
^\[main\.p0\] ##0 \$past\(main\.counter, 0\) == 0: FAILURE: property not supported by netlist BMC engine$
^EXIT=10$
^SIGNAL=0$
--
2 changes: 1 addition & 1 deletion regression/verilog/system-functions/past1.bdd.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CORE
past1.sv
--bdd
^\[main\.p0\] ##0 \(\$past\(main\.counter, 0\)\) == 0: FAILURE: property not supported by BDD engine$
^\[main\.p0\] ##0 \$past\(main\.counter, 0\) == 0: FAILURE: property not supported by BDD engine$
^EXIT=10$
^SIGNAL=0$
--
2 changes: 1 addition & 1 deletion regression/verilog/system-functions/past2.desc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CORE
past2.sv
--bdd
^\[main\.p0\] always \(main\.counter == 0 \|-> \(\$past\(main\.counter, 1\)\) == 0\): FAILURE: property not supported by BDD engine$
^\[main\.p0\] always \(main\.counter == 0 \|-> \$past\(main\.counter, 1\) == 0\): FAILURE: property not supported by BDD engine$
^EXIT=10$
^SIGNAL=0$
--
Expand Down
2 changes: 1 addition & 1 deletion src/verilog/expr2verilog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ expr2verilogt::convert_function_call(const function_call_exprt &src)

dest+=")";

return {verilog_precedencet::MIN, dest};
return {verilog_precedencet::MEMBER, dest};
}

/*******************************************************************\
Expand Down
Loading