u3: fixes bug in +rub jet (unsafe coercion from c3_w to noun)

This commit is contained in:
Joe Bryan 2020-05-04 16:13:51 -07:00
parent 03d80b8c63
commit 2c25c51eb8

View File

@ -14,7 +14,13 @@
u3_atom w, x, y, z;
u3_atom p, q;
u3_atom m = u3qa_add(a, u3r_met(0, b));
u3_atom m;
{
c3_w bit_w = u3r_met(0, b);
u3_noun bit = u3i_words(1, &bit_w);
m = u3qa_add(a, bit);
u3z(bit);
}
// Compute c and d.
{