Skip to content

Commit

Permalink
Add missing ROSE category conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Nov 18, 2023
1 parent 83eda80 commit a27281a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions common/src/registers/MachRegister.C
Expand Up @@ -734,6 +734,14 @@ namespace Dyninst {
c = x86_regclass_st_top;
n = baseID;
break;
case x86::YMM:
c = x86_regclass_ymm;
n = baseID;
break;
case x86::ZMM:
c = x86_regclass_zmm;
n = baseID;
break;
case x86::CTL:
c = x86_regclass_cr;
n = baseID;
Expand Down

0 comments on commit a27281a

Please sign in to comment.