Java: Fix a bug where Arm.Operand is wrongly calculated for the second and following operands
This commit is contained in:
parent
5bc875afc6
commit
d31f94f7a1
|
@ -1,5 +1,10 @@
|
|||
This file details the changelog of Capstone.
|
||||
|
||||
[ Arm ]
|
||||
|
||||
- Fix a bug where Arm.Operand is wrongly calculated for the second and
|
||||
following operands
|
||||
|
||||
---------------------------------
|
||||
Version 3.0.2: March 11th, 2015
|
||||
|
||||
|
|
|
@ -55,8 +55,8 @@ public class Arm {
|
|||
public int type;
|
||||
public OpValue value;
|
||||
public boolean subtracted;
|
||||
public int access;
|
||||
public int neon_lane;
|
||||
public byte access;
|
||||
public byte neon_lane;
|
||||
|
||||
public void read() {
|
||||
readField("vector_index");
|
||||
|
|
Loading…
Reference in New Issue