From: Alan Modra Date: Thu, 2 Jun 2022 09:12:01 +0000 (+0930) Subject: Re: ubsan: signed integer overflow in atof_generic X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a031255cf1842447a143849e720349eb00533d2;p=binutils-gdb.git Re: ubsan: signed integer overflow in atof_generic Oops. * atof-generic.c: Include limits.h. --- diff --git a/gas/atof-generic.c b/gas/atof-generic.c index 91583194868..1aee4fa8029 100644 --- a/gas/atof-generic.c +++ b/gas/atof-generic.c @@ -20,6 +20,7 @@ #include "as.h" #include "safe-ctype.h" +#include #ifdef TRACE static void flonum_print (const FLONUM_TYPE *);