diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-05-06 15:38:43 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-05-06 15:38:43 +0200 |
commit | 20268d12a51e157effc209de5613f0ac8308a61f (patch) | |
tree | d76cb8bc0fd4a176699fe140e01e4d93d9b4c749 /frontends | |
parent | b37c31e2cb82343e363d39e4b35ebdb82f4f69a3 (diff) | |
download | yosys-20268d12a51e157effc209de5613f0ac8308a61f.tar.gz yosys-20268d12a51e157effc209de5613f0ac8308a61f.tar.bz2 yosys-20268d12a51e157effc209de5613f0ac8308a61f.zip |
Fix the other bison warning in ilang_parser.y
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/ilang/ilang_parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ilang/ilang_parser.y b/frontends/ilang/ilang_parser.y index f83824088..7bb216dd0 100644 --- a/frontends/ilang/ilang_parser.y +++ b/frontends/ilang/ilang_parser.y @@ -45,7 +45,7 @@ YOSYS_NAMESPACE_END USING_YOSYS_NAMESPACE %} -%name-prefix "rtlil_frontend_ilang_yy" +%define api.prefix {rtlil_frontend_ilang_yy} %union { char *string; |