fix mem arg parsing

This commit is contained in:
Ilya Rezvov
2018-02-19 18:48:50 -08:00
parent 6a7b82086a
commit 55a6b482ef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ instance Serialize Index where
get = Index <$> getULEB128
instance Serialize MemArg where
put (MemArg offset align) = putULEB128 align >> putULEB128 offset
put (MemArg align offset) = putULEB128 align >> putULEB128 offset
get = MemArg <$> getULEB128 <*> getULEB128
instance Serialize Instruction where