Skip to content

Commit

Permalink
Fix(chore): Fix ARMCC_Invalid is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
kabeor committed Nov 24, 2024
1 parent f69c4a4 commit 5e0fd4c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions bindings/java/capstone/Arm_const.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class Arm_const {
public static final int ARMCC_LE = 13;
public static final int ARMCC_AL = 14;
public static final int ARMCC_UNDEF = 15;
public static final int ARMCC_Invalid = 16;

public static final int ARMVCC_None = 0;
public static final int ARMVCC_Then = 1;
Expand Down
1 change: 1 addition & 0 deletions bindings/ocaml/arm_const.ml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ let _ARMCC_GT = 12;;
let _ARMCC_LE = 13;;
let _ARMCC_AL = 14;;
let _ARMCC_UNDEF = 15;;
let _ARMCC_Invalid = 16;;

let _ARMVCC_None = 0;;
let _ARMVCC_Then = 1;;
Expand Down
1 change: 1 addition & 0 deletions bindings/python/capstone/arm_const.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
ARMCC_LE = 13
ARMCC_AL = 14
ARMCC_UNDEF = 15
ARMCC_Invalid = 16

ARMVCC_None = 0
ARMVCC_Then = 1
Expand Down
1 change: 1 addition & 0 deletions include/capstone/arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ typedef enum CondCodes {
ARMCC_LE, // Less than or equal <, ==, or unordered
ARMCC_AL, // Always (unconditional) Always (unconditional)
ARMCC_UNDEF = 15, // Undefined
ARMCC_Invalid = 16, // Invalid
} ARMCC_CondCodes;

inline static ARMCC_CondCodes ARMCC_getOppositeCondition(ARMCC_CondCodes CC)
Expand Down

0 comments on commit 5e0fd4c

Please sign in to comment.