Skip to content

Commit

Permalink
Removed ND_CAT_FRED.
Browse files Browse the repository at this point in the history
  • Loading branch information
vlutas committed Nov 2, 2021
1 parent 656916d commit 7749e06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion disasmtool/disasmtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ const char* category_to_string(
case ND_CAT_EXPAND: return "EXPAND";
case ND_CAT_FLAGOP: return "FLAGOP";
case ND_CAT_FMA4: return "FMA4";
case ND_CAT_FRED: return "FRED";
case ND_CAT_GATHER: return "GATHER";
case ND_CAT_GFNI: return "GFNI";
case ND_CAT_HRESET: return "HRESET";
Expand Down Expand Up @@ -1693,6 +1692,10 @@ handle_shemu(
{
printf(" SHEMU_FLAG_SYSCALL_MSR_WRITE\n");
}
if (ctx.Flags & SHEMU_FLAG_SIDT)
{
printf(" SHEMU_FLAG_SIDT\n");
}

if (fNameDecoded != NULL)
{
Expand Down
1 change: 0 additions & 1 deletion disasmtool_lix/dumpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,6 @@ std::string ins_cat_to_str(ND_INS_CATEGORY category)
case ND_CAT_EXPAND: return "expand";
case ND_CAT_FLAGOP: return "flagop";
case ND_CAT_FMA4: return "fma4";
case ND_CAT_FRED: return "fred";
case ND_CAT_GATHER: return "gather";
case ND_CAT_GFNI: return "gfni";
case ND_CAT_HRESET: return "hreset";
Expand Down

0 comments on commit 7749e06

Please sign in to comment.