qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 3/5] MIPS: fix yield handling


From: Blue Swirl
Subject: [Qemu-devel] [PATCH 3/5] MIPS: fix yield handling
Date: Sat, 4 Sep 2010 14:17:40 +0000

The parameter for yield should be handled as signed integer
for the comparisons to have any effect.

This also fixes a gcc warning with -Wtype-limits.

Signed-off-by: Blue Swirl <address@hidden>
---
 target-mips/op_helper.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c
index 50c65bd..41abd57 100644
--- a/target-mips/op_helper.c
+++ b/target-mips/op_helper.c
@@ -1598,8 +1598,10 @@ void helper_fork(target_ulong arg1, target_ulong arg2)
     // TODO: store to TC register
 }

-target_ulong helper_yield(target_ulong arg1)
+target_ulong helper_yield(target_ulong arg)
 {
+    target_long arg1 = arg;
+
     if (arg1 < 0) {
         /* No scheduling policy implemented. */
         if (arg1 != -2) {
-- 
1.6.2.4



reply via email to

[Prev in Thread] Current Thread [Next in Thread]