From: Paul Eggert Date: Thu, 30 May 2019 22:06:39 +0000 (-0700) Subject: Pacify GCC when compiling unexelf.c on Fedora 30 X-Git-Tag: emacs-26.2.90~37 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2e44b4;p=emacs.git Pacify GCC when compiling unexelf.c on Fedora 30 * src/unexelf.c (unexec): Pacify GCC 9. --- diff --git a/src/unexelf.c b/src/unexelf.c index c63a8d03c22..6d19bf1fb9f 100644 --- a/src/unexelf.c +++ b/src/unexelf.c @@ -304,6 +304,7 @@ unexec (const char *new_name, const char *old_name) || seg->p_vaddr > old_bss_seg->p_vaddr)) old_bss_seg = seg; } + eassume (old_bss_seg); /* Note that old_bss_addr may be lower than the first bss section address, since the section may need aligning. */