contracts: Add missing instruction to the Schedule (#7527)

This commit is contained in:
Alexander Theißen
2020-11-12 16:45:51 +01:00
committed by GitHub
parent b05ce3c0e1
commit cbe9bbd2d8
@@ -607,6 +607,7 @@ impl<'a, T: Trait> rules::Rules for ScheduleRules<'a, T> {
I32Clz | I64Clz => w.i64clz,
I32Ctz | I64Ctz => w.i64ctz,
I32Popcnt | I64Popcnt => w.i64popcnt,
I32Eqz | I64Eqz => w.i64eqz,
I64ExtendSI32 => w.i64extendsi32,
I64ExtendUI32 => w.i64extendui32,
I32WrapI64 => w.i32wrapi64,