aboutsummaryrefslogtreecommitdiffstats
path: root/passes/pmgen
diff options
context:
space:
mode:
authorJim Lawson <ucbjrl@berkeley.edu>2019-04-09 13:41:58 -0700
committerJim Lawson <ucbjrl@berkeley.edu>2019-04-09 13:41:58 -0700
commit354ba5ba83f7b1fc3bb07aa6bf26dde7a00201d1 (patch)
tree71722220d86997712e0543e79f63f46b32a1fa8c /passes/pmgen
parentefc3c13ec3409d77cdd7af87b609d94982eaeea5 (diff)
parent0deaccbaae436bc94ad5b2913fa39a9368c09ace (diff)
downloadyosys-354ba5ba83f7b1fc3bb07aa6bf26dde7a00201d1.tar.gz
yosys-354ba5ba83f7b1fc3bb07aa6bf26dde7a00201d1.tar.bz2
yosys-354ba5ba83f7b1fc3bb07aa6bf26dde7a00201d1.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'passes/pmgen')
-rw-r--r--passes/pmgen/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/pmgen/README.md b/passes/pmgen/README.md
index 223b43059..7a46558b1 100644
--- a/passes/pmgen/README.md
+++ b/passes/pmgen/README.md
@@ -83,8 +83,8 @@ They are declared like state variables, just using the `udata` statement:
udata <int> min_data_width max_data_width
udata <IdString> data_port_name
-They are atomatically initialzed to the default constructed value of their type
-when ther pattern matcher object is constructed.
+They are automatically initialized to the default constructed value of their type
+when the pattern matcher object is constructed.
Embedded C++ code
-----------------
@@ -158,7 +158,7 @@ Finally, `filter <expression>` narrows down the remaining list of cells. For
performance reasons `filter` statements should only be used for things that
can't be done using `select` and `index`.
-The `optional` statement marks optional matches. I.e. the matcher will also
+The `optional` statement marks optional matches. That is, the matcher will also
explore the case where `mul` is set to `nullptr`. Without the `optional`
statement a match may only be assigned nullptr when one of the `if` expressions
evaluates to `false`.