We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9bd2294 + 6fa56eb commit a7bf36cCopy full SHA for a7bf36c
regression/verilog/system-functions/low1.desc
@@ -1,9 +1,8 @@
1
-KNOWNBUG
+CORE broken-smt-backend
2
low1.sv
3
--module main --bound 0
4
^EXIT=0$
5
^SIGNAL=0$
6
--
7
^warning: ignoring
8
9
-This yields an error in the typechecker.
src/verilog/verilog_typecheck_expr.cpp
@@ -2351,8 +2351,9 @@ Function: zero_extend
2351
2352
static exprt zero_extend(const exprt &expr, const typet &type)
2353
{
2354
- auto old_width = expr.type().id() == ID_bool
2355
- ? 1
+ auto old_width = expr.type().id() == ID_bool ? 1
+ : expr.type().id() == ID_integer
2356
+ ? 32
2357
: to_bitvector_type(expr.type()).get_width();
2358
2359
// first make unsigned
0 commit comments