Merge pull request #299 from weinholt/gcc-8

- Double FMTBUFSIZE to fix compilation with gcc-8
original commit: 5850c5ec26a8c4d09282aa04cfc3149594ea371a
This commit is contained in:
Andy Keep 2018-05-22 23:54:36 -04:00 committed by GitHub
commit 6b4ae1726b
2 changed files with 4 additions and 2 deletions

4
LOG
View File

@ -943,4 +943,6 @@
invisible due to libs-visible? flag.
compile.ss, 7.ms, root-experr-compile-0-f-f-f, root-experr-compile-2-f-f-f,
patch-compile-0-f-t-f, patch-compile-0-t-f-f, patch-interpret-0-f-f-f,
patch-interpret-0-f-t-f, patch-interpret-3-f-f-f, patch-interpret-3-f-t-f
patch-interpret-0-f-t-f, patch-interpret-3-f-f-f, patch-interpret-3-f-t-f
- Double FMTBUFSIZE to fix compilation with gcc-8
c/prim5.c

View File

@ -219,7 +219,7 @@ static ptr s_decode_float(x) ptr x; {
return S_decode_float(FLODAT(x));
}
#define FMTBUFSIZE 60
#define FMTBUFSIZE 120
#define CHUNKADDRLT(x, y) (((chunkinfo *)(Scar(x)))->addr < ((chunkinfo *)(Scar(y)))->addr)
mkmergesort(sort_chunks, merge_chunks, ptr, Snil, CHUNKADDRLT, INITCDR)