lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi,

Not sure who really owns the patch, so sorry for the spam.

In src/lopcodes.c

+#if defined(LUA_BITWISE_OPERATORS)
+  "BOR",
+  "BAND",
+  "OP_BXOR"
+  "BLSHFT",
+  "BRSHFT",
+  "BNOT",
+  "INTDIV",


the "OP_BXOR" is missing a comma after it, so the strings get
concatenated etc. Thus disassembly for instructions after it will be all
messed up.

Its no big deal, but was a bit confused trying to work out wtf a
disassembled function was doing :)

Cheers,
Aaron