Use fast path for 32-bit Const integer constructor in more places

This commit is contained in:
Robert O'Callahan
2025-09-16 03:17:24 +00:00
parent 9ad83cc67b
commit 1a367b907c
6 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -465,7 +465,7 @@ constant:
free($1);
} |
TOK_INT {
$$ = new RTLIL::Const($1, 32);
$$ = new RTLIL::Const($1);
} |
TOK_STRING {
$$ = new RTLIL::Const($1);