* [Qemu-devel] [5248] alpha: fix a missing literal sign issue
@ 2008-09-18 9:17 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2008-09-18 9:17 UTC (permalink / raw)
To: qemu-devel
Revision: 5248
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5248
Author: aurel32
Date: 2008-09-18 09:17:13 +0000 (Thu, 18 Sep 2008)
Log Message:
-----------
alpha: fix a missing literal sign issue
Reported by Tristan Gingold
Modified Paths:
--------------
trunk/target-alpha/translate.c
Modified: trunk/target-alpha/translate.c
===================================================================
--- trunk/target-alpha/translate.c 2008-09-18 00:02:17 UTC (rev 5247)
+++ trunk/target-alpha/translate.c 2008-09-18 09:17:13 UTC (rev 5248)
@@ -390,7 +390,7 @@
static always_inline void gen_cmov (DisasContext *ctx,
TCGCond inv_cond,
int ra, int rb, int rc,
- int islit, int8_t lit, int mask)
+ int islit, uint8_t lit, int mask)
{
int l1;
@@ -477,7 +477,7 @@
/* EXTWH, EXTWH, EXTLH, EXTQH */
static always_inline void gen_ext_h(void (*tcg_gen_ext_i64)(TCGv t0, TCGv t1),
int ra, int rb, int rc,
- int islit, int8_t lit)
+ int islit, uint8_t lit)
{
if (unlikely(rc == 31))
return;
@@ -508,7 +508,7 @@
/* EXTBL, EXTWL, EXTWL, EXTLL, EXTQL */
static always_inline void gen_ext_l(void (*tcg_gen_ext_i64)(TCGv t0, TCGv t1),
int ra, int rb, int rc,
- int islit, int8_t lit)
+ int islit, uint8_t lit)
{
if (unlikely(rc == 31))
return;
@@ -567,7 +567,7 @@
int32_t disp21, disp16, disp12;
uint16_t fn11, fn16;
uint8_t opc, ra, rb, rc, sbz, fpfn, fn7, fn2, islit;
- int8_t lit;
+ uint8_t lit;
int ret;
/* Decode all instruction fields */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-18 9:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-18 9:17 [Qemu-devel] [5248] alpha: fix a missing literal sign issue Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).