diff options
author | malc <av1474@comtv.ru> | 2011-08-22 18:26:15 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2011-08-22 18:26:15 +0400 |
commit | 0bf1dbdcc935dfc220a93cd990e947e90706aec6 (patch) | |
tree | 1b11faae621ef15704eef3f2cb49f24b22e38afa /tcg/ppc64 | |
parent | 1afa194a0a3384c5a8fd150e4335d332c22883cf (diff) |
tcg/ppc64: fix 16/32 mixup
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'tcg/ppc64')
-rw-r--r-- | tcg/ppc64/tcg-target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcg/ppc64/tcg-target.h b/tcg/ppc64/tcg-target.h index 5a4609a415..539513171b 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 |