decode: Change REP flag values

The new values allow for a more optimizable computation of the required
flags from the decoded prefix.
This commit is contained in:
Alexis Engelke
2023-03-24 14:00:14 +01:00
parent 538708cd21
commit 0a36604c81
2 changed files with 3 additions and 6 deletions

View File

@@ -37,8 +37,8 @@ typedef enum {
/** Internal use only. **/
enum {
FD_FLAG_LOCK = 1 << 0,
FD_FLAG_REP = 1 << 1,
FD_FLAG_REPNZ = 1 << 2,
FD_FLAG_REP = 1 << 2,
FD_FLAG_REPNZ = 1 << 1,
FD_FLAG_64 = 1 << 7,
};