diff --git a/common/h/registers/x86_64_regs.h b/common/h/registers/x86_64_regs.h index 3412bc876c..8df8e3d51b 100644 --- a/common/h/registers/x86_64_regs.h +++ b/common/h/registers/x86_64_regs.h @@ -88,7 +88,6 @@ namespace Dyninst { namespace x86_64 { const signed int YMM = 0x000B0000; // YMM0-YMM7 Registers from AVX2/FMA const signed int ZMM = 0x000C0000; // ZMM0-ZMM7 Registers from AVX-512 const signed int KMASK = 0x000D0000; // K0-K7 opmask Registers from AVX-512 - const signed int FLAGS = 0x00000000; // RFLAGS Register const signed int BASEA = 0x0; const signed int BASEC = 0x1; const signed int BASED = 0x2; @@ -105,6 +104,7 @@ namespace Dyninst { namespace x86_64 { const signed int BASE13 = 0xd; const signed int BASE14 = 0xe; const signed int BASE15 = 0xf; + const signed int FLAGS = 0x00000000; // RFLAGS Register const signed int CF = x86::CF; const signed int PF = x86::PF;