Skip to content

Commit

Permalink
Move FLAGS ID down with the others.
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Nov 17, 2023
1 parent cd87137 commit 7db45c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/h/registers/x86_64_regs.h
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 7db45c4

Please sign in to comment.