* fixed the global.get, global.set, local.set, local.get and local.tee instructions in the llvm-mc instruction writer

git-svn-id: branches/wasm@46701 -
This commit is contained in:
nickysn 2020-08-26 17:14:43 +00:00
parent 0e3754e24d
commit e3da45de37

View File

@ -42,7 +42,7 @@ interface
'return', 'unreachable',
// basic
'nop', 'drop', 'i32.const', 'i64.const', 'f32.const', 'f64.const',
'get_local', 'set_local', 'tee_local', 'get_global', 'set_global',
'local.get', 'local.set', 'local.tee', 'global.get', 'global.set',
'select', 'call', 'call_indirect',
// integer
'i32.add', 'i64.add', 'i32.sub', 'i64.sub', 'i32.mul', 'i64.mul',