summaryrefslogtreecommitdiff
path: root/target-s390x/cpu.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-08-24 07:39:11 -0700
committerRichard Henderson <rth@twiddle.net>2013-01-05 12:18:41 -0800
commit102bf2c63535122cba0d7917ed8cfb8cc1c7b14c (patch)
treef66ce31acb76df233d7a75d908795eac19ea31e0 /target-s390x/cpu.h
parent683bb9a8889cd00e69b05ba78bd5ba27f2e4e958 (diff)
downloadqemu-102bf2c63535122cba0d7917ed8cfb8cc1c7b14c.tar.gz
target-s390: Convert FLOGR
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-s390x/cpu.h')
-rw-r--r--target-s390x/cpu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h
index f1d4dc67f4..dc7bbc67f6 100644
--- a/target-s390x/cpu.h
+++ b/target-s390x/cpu.h
@@ -478,6 +478,7 @@ enum cc_op {
CC_OP_ICM, /* insert characters under mask */
CC_OP_SLA_32, /* Calculate shift left signed (32bit) */
CC_OP_SLA_64, /* Calculate shift left signed (64bit) */
+ CC_OP_FLOGR, /* find leftmost one */
CC_OP_MAX
};
@@ -521,6 +522,7 @@ static const char *cc_names[] = {
[CC_OP_ICM] = "CC_OP_ICM",
[CC_OP_SLA_32] = "CC_OP_SLA_32",
[CC_OP_SLA_64] = "CC_OP_SLA_64",
+ [CC_OP_FLOGR] = "CC_OP_FLOGR",
};
static inline const char *cc_name(int cc_op)