projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78c9f7c
)
tcg-s390: Fix merge error in tgen_brcond
author
Richard Henderson
<rth@twiddle.net>
Fri, 5 Apr 2013 18:10:28 +0000
(14:10 -0400)
committer
Richard Henderson
<rth@twiddle.net>
Fri, 5 Apr 2013 18:35:42 +0000
(13:35 -0500)
When the TCG condition codes were re-organized last year,
we failed to update all of the "old-style" tests for unsigned.
Signed-off-by: Richard Henderson <rth@twiddle.net>
tcg/s390/tcg-target.c
patch
|
blob
|
history
diff --git
a/tcg/s390/tcg-target.c
b/tcg/s390/tcg-target.c
index 8e660b318da973de62d84b009b84f8aba8c6f2bf..7d6f777081b0df7f268c5ba3164f816502d5df52 100644
(file)
--- a/
tcg/s390/tcg-target.c
+++ b/
tcg/s390/tcg-target.c
@@
-1231,7
+1231,7
@@
static void tgen_brcond(TCGContext *s, TCGType type, TCGCond c,
int cc;
if (facilities & FACILITY_GEN_INST_EXT) {
- bool is_unsigned =
(c > TCG_COND_GT
);
+ bool is_unsigned =
is_unsigned_cond(c
);
bool in_range;
S390Opcode opc;