Silence warning about 64 to 32 bit conversion

This commit is contained in:
Lane Roathe 2019-11-17 11:42:16 -08:00
parent 1cfe6ebbbf
commit 828675483a

View File

@ -1786,7 +1786,7 @@ void CLASS::process(void)
if (x == 0)
{
value &= 0xFFFFFFFF;
line.expr_value = value;
line.expr_value = (uint32_t)value;
}
else
{