Add name to relative branch group in supported architectures. (#982)

This commit is contained in:
Alfredo Beaumont 2017-08-01 10:49:43 +02:00 committed by Nguyen Anh Quynh
parent 27f03c1b5d
commit 9f6b28cc0b
5 changed files with 5 additions and 0 deletions

View File

@ -836,6 +836,7 @@ static name_map group_name_maps[] = {
{ ARM64_GRP_RET, "return" },
{ ARM64_GRP_PRIVILEGE, "privilege" },
{ ARM64_GRP_INT, "int" },
{ ARM64_GRP_BRANCH_RELATIVE, "branch_relative" },
// architecture-specific groups
{ ARM64_GRP_CRYPTO, "crypto" },

View File

@ -772,6 +772,7 @@ static name_map group_name_maps[] = {
{ ARM_GRP_CALL, "call" },
{ ARM_GRP_INT, "int" },
{ ARM_GRP_PRIVILEGE, "privilege" },
{ ARM_GRP_BRANCH_RELATIVE, "branch_relative" },
// architecture-specific groups
{ ARM_GRP_CRYPTO, "crypto" },

View File

@ -350,6 +350,7 @@ static name_map group_name_maps[] = {
{ M68K_GRP_JUMP, "jump" },
{ M68K_GRP_RET , "ret" },
{ M68K_GRP_IRET, "iret" },
{ M68K_GRP_BRANCH_RELATIVE, "branch_relative" },
};
#endif

View File

@ -907,6 +907,7 @@ static name_map group_name_maps[] = {
{ MIPS_GRP_INT, "int" },
{ MIPS_GRP_IRET, "iret" },
{ MIPS_GRP_PRIVILEGE, "privileged" },
{ MIPS_GRP_BRANCH_RELATIVE, "branch_relative" },
// architecture-specific groups
{ MIPS_GRP_BITCOUNT, "bitcount" },

View File

@ -2377,6 +2377,7 @@ static name_map group_name_maps[] = {
{ X86_GRP_INT, "int" },
{ X86_GRP_IRET, "iret" },
{ X86_GRP_PRIVILEGE, "privilege" },
{ X86_GRP_BRANCH_RELATIVE, "branch_relative" },
// architecture-specific groups
{ X86_GRP_VM, "vm" },