From 551f666028f8a7ac51b67716f6ba7bdc38577a63 Mon Sep 17 00:00:00 2001 From: David Given Date: Mon, 1 Aug 2022 22:08:13 +0200 Subject: [PATCH] Silence an irritating warning. --- h/con_float | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/h/con_float b/h/con_float index 8f8eeb8ad..ef31a2807 100644 --- a/h/con_float +++ b/h/con_float @@ -288,7 +288,10 @@ void con_float(void) fprintf(codefile, "!float %s sz %d\n", str, (int)argval); if (rval == 2) { - fprintf(stderr, "Warning: overflow in floating point constant %s\n", str); + /* If this is enabled, it causes huge amounts of build system spam, so + * I've silenced it. dtrg 2022-08-01 */ + + /* fprintf(stderr, "Warning: overflow in floating point constant %s\n", str);*/ } fprintf(codefile, ".data1 0%o", buf[0] & 0377); for (i = 1; i < (int)argval; i++)