diff options
Diffstat (limited to 'target-s390x/cpu.h')
-rw-r--r-- | target-s390x/cpu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h index 69269a14ca..b8e9037eeb 100644 --- a/target-s390x/cpu.h +++ b/target-s390x/cpu.h @@ -478,7 +478,8 @@ enum cc_op { CC_OP_NZ_F64, /* FP dst != 0 (64bit) */ CC_OP_ICM, /* insert characters under mask */ - CC_OP_SLAG, /* Calculate shift left signed */ + CC_OP_SLA_32, /* Calculate shift left signed (32bit) */ + CC_OP_SLA_64, /* Calculate shift left signed (64bit) */ CC_OP_MAX }; @@ -521,7 +522,8 @@ static const char *cc_names[] = { [CC_OP_NZ_F32] = "CC_OP_NZ_F32", [CC_OP_NZ_F64] = "CC_OP_NZ_F64", [CC_OP_ICM] = "CC_OP_ICM", - [CC_OP_SLAG] = "CC_OP_SLAG", + [CC_OP_SLA_32] = "CC_OP_SLA_32", + [CC_OP_SLA_64] = "CC_OP_SLA_64", }; static inline const char *cc_name(int cc_op) |