| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/devel/orc/files/ |
Upload File : |
# This works around a fatal error in qemu-bsd-user dealing with floats in a
# very complex way. This is arguably a bug in this code too, but for now
# patch around it so that we can get ports building via qemu-bsd-user and
# get more testing. sbruno 16SEP2014
--- orc/orcprogram-c.c.orig 2019-09-09 07:21:43 UTC
+++ orc/orcprogram-c.c
@@ -826,7 +826,7 @@ c_rule_loadpX (OrcCompiler *p, void *user, OrcInstruct
ORC_ASM_CODE(p," %s = 0x%08x; /* %d or %gf */\n", dest,
(unsigned int)p->vars[insn->src_args[0]].value.i,
(int)p->vars[insn->src_args[0]].value.i,
- p->vars[insn->src_args[0]].value.f);
+ p->vars[insn->src_args[0]].value.x2f[0]);
} else {
ORC_ASM_CODE(p," %s = ORC_UINT64_C(0x%08x%08x); /* %gf */\n", dest,
(orc_uint32)(((orc_uint64)p->vars[insn->src_args[0]].value.i)>>32),