You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The offset and align fields in memargs are specified as 'offset='o:u32 and 'align='a:u32 with no space between the keywords and the u32s. However, according to the longest match rule in the lexical format, valid offsets and alignments such as offset=0 and align=3 are reserved and should not appear in the source.
Obviously we can't fix this by changing the format of the offset and align fields due to backward compatibility. Is there a way we can safely fix this in the lexical format?