[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: bug in bitwise operators power patch
- From: aaron <aaron_ppus@...>
- Date: Sat, 28 Mar 2009 16:49:54 +0900
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