freebsd-ports/devel/orc/files/patch-orc_orcprogram-c.c
Robert Clausecker cb61cd8b66 devel/orc: work around armv7 libc bug
The armv7 libc has a bug in printf() where printing a denormal double
may cause NUL bytes to be written out.  This port tries to write a
diagnostic comment containing such a denormal to a C source file.  The
bug causes the source file to be malformed, breaking the port and its
consumers.

Work around the bug by killing the offending part of the diagnostic
comment.

Approved by:	portmgr (build fix blanket)
Reviewed by:	diizzy
PR:		272229
2023-06-27 01:30:29 +02:00

19 lines
978 B
C

This patch works around a bug in the armv7 libc where sprintf(buf, "%g", 1.26e-321);
generates a string with an embedded NUL byte, causing broken source code to be
generated (PR272229).
--- orc/orcprogram-c.c.orig 2023-06-26 19:40:12 UTC
+++ orc/orcprogram-c.c
@@ -825,10 +825,9 @@ c_rule_loadpX (OrcCompiler *p, void *user, OrcInstruct
}
} else if (p->vars[insn->src_args[0]].vartype == ORC_VAR_TYPE_CONST) {
if (p->vars[insn->src_args[0]].size <= 4) {
- ORC_ASM_CODE(p," %s = 0x%08x; /* %d or %gf */\n", dest,
+ ORC_ASM_CODE(p," %s = 0x%08x; /* %d */\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);
+ (int)p->vars[insn->src_args[0]].value.i);
} 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),