diff options
| author | Tim Snyder | 2020-11-23 13:26:39 -0600 |
|---|---|---|
| committer | GitHub | 2020-11-23 19:26:39 +0000 |
| commit | 3be73de269e99a078cca17fbc49c9f592c483143 (patch) | |
| tree | 3e933c33e092142db0692d599c93a040d7aba4fd /src | |
| parent | cd845bdbfea0c09e9edbf61e651ede5197d8a084 (diff) | |
add weak and strong to Utils.v_keywords (#1983)
Verilator 4.034 was complaining about wires being named weak and strong
because those are SV 2009 keywords. Added them to the Utils.v_keywords list
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/Utils.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/firrtl/Utils.scala b/src/main/scala/firrtl/Utils.scala index 921ec60b..467552cb 100644 --- a/src/main/scala/firrtl/Utils.scala +++ b/src/main/scala/firrtl/Utils.scala @@ -819,7 +819,7 @@ object Utils extends LazyLogging { "scalared", "sequence", "shortint", "shortreal", "showcancelled", "signed", "small", "solve", "specify", "specparam", "static", - "strength", "string", "strong0", "strong1", "struct", "super", + "strength", "string", "strong", "strong0", "strong1", "struct", "super", "supply0", "supply1", "table", "tagged", "task", "this", "throughout", "time", "timeprecision", @@ -830,7 +830,7 @@ object Utils extends LazyLogging { "var", "vectored", "virtual", "void", - "wait", "wait_order", "wand", "weak0", "weak1", "while", + "wait", "wait_order", "wand", "weak", "weak0", "weak1", "while", "wildcard", "wire", "with", "within", "wor", "xnor", "xor", |
