mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
54b840b37a
port that now also works for the 32 bit "qemu" executable on amd64 (if you build with the KQEMU knob on, you have to deinstall the old kqemu-kmod first if it is installed) - Add an ALL_TARGETS knob that, if turned off, omits the remaining dyngen targets, eliminating the need for gcc 3.4 (everything but ppc and sh4 has been converted to tcg in this snapshot) - Add tcg fixes for amd64 guests on i386 hosts (two of three have been committed to qemu svn in the meantime) [1] - Update the pkg-message about kqemu on amd64, and add a note about using nfs with slirp, the latter [2] - Homepage now at http://bellard.org/qemu/ - update links Submitted by: nox [1] Submitted by: joerg [2]
29 lines
1.5 KiB
C
29 lines
1.5 KiB
C
Index: qemu/tcg/i386/tcg-target.c
|
|
@@ -360,22 +360,22 @@
|
|
case TCG_COND_LT:
|
|
tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3], args[5]);
|
|
tcg_out_jxx(s, JCC_JNE, label_next);
|
|
- tcg_out_brcond(s, TCG_COND_LT, args[0], args[2], const_args[2], args[5]);
|
|
+ tcg_out_brcond(s, TCG_COND_LTU, args[0], args[2], const_args[2], args[5]);
|
|
break;
|
|
case TCG_COND_LE:
|
|
tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3], args[5]);
|
|
tcg_out_jxx(s, JCC_JNE, label_next);
|
|
- tcg_out_brcond(s, TCG_COND_LE, args[0], args[2], const_args[2], args[5]);
|
|
+ tcg_out_brcond(s, TCG_COND_LEU, args[0], args[2], const_args[2], args[5]);
|
|
break;
|
|
case TCG_COND_GT:
|
|
tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3], args[5]);
|
|
tcg_out_jxx(s, JCC_JNE, label_next);
|
|
- tcg_out_brcond(s, TCG_COND_GT, args[0], args[2], const_args[2], args[5]);
|
|
+ tcg_out_brcond(s, TCG_COND_GTU, args[0], args[2], const_args[2], args[5]);
|
|
break;
|
|
case TCG_COND_GE:
|
|
tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3], args[5]);
|
|
tcg_out_jxx(s, JCC_JNE, label_next);
|
|
- tcg_out_brcond(s, TCG_COND_GE, args[0], args[2], const_args[2], args[5]);
|
|
+ tcg_out_brcond(s, TCG_COND_GEU, args[0], args[2], const_args[2], args[5]);
|
|
break;
|
|
case TCG_COND_LTU:
|
|
tcg_out_brcond(s, TCG_COND_LTU, args[1], args[3], const_args[3], args[5]);
|