From patchwork Wed May 12 18:04:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] target-sparc: Fix compilation with --enable-debug. Date: Wed, 12 May 2010 08:04:25 -0000 From: Richard Henderson X-Patchwork-Id: 52401 Message-Id: <432bb92f7dc1568e2a1470cc8cf81cbfc98e2fcd.1273687255.git.rth@twiddle.net> To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, atar4qemu@googlemail.com Return a target_ulong from compute_C_icc to match the width of the users. Signed-off-by: Richard Henderson --- target-sparc/helper.h | 2 +- target-sparc/op_helper.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-sparc/helper.h b/target-sparc/helper.h index 6f103e7..04c1306 100644 --- a/target-sparc/helper.h +++ b/target-sparc/helper.h @@ -158,6 +158,6 @@ VIS_CMPHELPER(cmpne); #undef VIS_HELPER #undef VIS_CMPHELPER DEF_HELPER_0(compute_psr, void); -DEF_HELPER_0(compute_C_icc, i32); +DEF_HELPER_0(compute_C_icc, tl); #include "def-helper.h" diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index fcfd3f3..09449c5 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -1282,7 +1282,7 @@ void helper_compute_psr(void) CC_OP = CC_OP_FLAGS; } -uint32_t helper_compute_C_icc(void) +target_ulong helper_compute_C_icc(void) { uint32_t ret;