Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/src/explanations/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,12 +444,12 @@ SystemVerilog may be difficult for you to use FileCheck with due to the default
SystemVerilog lowering, emission, and pretty printing used by `firtool`. To
make it easier to write your tests, we suggest using the following options:

- `-loweringOptions=emittedLineLength=160` to increase the allowable line
- `--lowering-options=emittedLineLength=160` to increase the allowable line
length. By default, `firtool` will wrap lines that exceed 80 characters. You
may consider using a _very long_ line length (e.g., 8192) to avoid this
problem altogether.

- `-loweringOptions=disallowLocalVariables` to disable generation of `automatic
- `--lowering-options=disallowLocalVariables` to disable generation of `automatic
logic` temporaries in always blocks. This can cause temporaries to spill
within an always block which may be slightly unexpected.

Expand Down
Loading