aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2011-08-22 18:26:15 +0400
committermalc <av1474@comtv.ru>2011-08-22 18:26:15 +0400
commit0bf1dbdcc935dfc220a93cd990e947e90706aec6 (patch)
tree1b11faae621ef15704eef3f2cb49f24b22e38afa
parent1afa194a0a3384c5a8fd150e4335d332c22883cf (diff)
tcg/ppc64: fix 16/32 mixup
Signed-off-by: malc <av1474@comtv.ru>
-rw-r--r--tcg/ppc64/tcg-target.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcg/ppc64/tcg-target.h b/tcg/ppc64/tcg-target.h
index 5a4609a41..539513171 100644
--- a/tcg/ppc64/tcg-target.h
+++ b/tcg/ppc64/tcg-target.h
@@ -91,8 +91,8 @@ enum {
#define TCG_TARGET_HAS_ext16s_i64 1
#define TCG_TARGET_HAS_ext32s_i64 1
#define TCG_TARGET_HAS_ext8u_i64 0
-#define TCG_TARGET_HAS_ext16u_i64 1
-#define TCG_TARGET_HAS_ext32u_i64 0
+#define TCG_TARGET_HAS_ext16u_i64 0
+#define TCG_TARGET_HAS_ext32u_i64 1
#define TCG_TARGET_HAS_bswap16_i64 0
#define TCG_TARGET_HAS_bswap32_i64 0
#define TCG_TARGET_HAS_bswap64_i64 0