Merge pull request #820 from akirschbaum/next-java-bugfix1

Java: Fix a bug where Arm.OpInfo.memBarrier and Arm.OpInfo.op is wrongly calculated
This commit is contained in:
Nguyen Anh Quynh 2016-11-27 18:03:14 +08:00 committed by GitHub
commit 9d8fbf3ab6
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ This file details the changelog of Capstone.
- Fix a bug where Arm.Operand is wrongly calculated for the second and
following operands
- Fix a bug where Arm.OpInfo.memBarrier and Arm.OpInfo.op is wrongly
calculated
---------------------------------
Version 3.0.2: March 11th, 2015

View File

@ -93,7 +93,7 @@ public class Arm {
public int cc;
public byte update_flags;
public byte writeback;
public byte mem_barrier;
public int mem_barrier;
public byte op_count;
public Operand [] op;