Skip to content

Commit

Permalink
Fix wrong register aliases on arm64 (capstone-engine#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunyarakun authored and aquynh committed Dec 21, 2017
1 parent df6b8e0 commit f98fde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/capstone/arm64.h
Original file line number Diff line number Diff line change
Expand Up @@ -612,8 +612,8 @@ typedef enum arm64_reg {

//> alias registers

ARM64_REG_IP1 = ARM64_REG_X16,
ARM64_REG_IP0 = ARM64_REG_X17,
ARM64_REG_IP0 = ARM64_REG_X16,
ARM64_REG_IP1 = ARM64_REG_X17,
ARM64_REG_FP = ARM64_REG_X29,
ARM64_REG_LR = ARM64_REG_X30,
} arm64_reg;
Expand Down

0 comments on commit f98fde5

Please sign in to comment.