On Wed, Sep 06, 2017 at 10:08:01PM +0200, David Edelsohn wrote:
> This change broke bootstrap on AIX because sancov.c now references a
> macro that is defined as a function on AIX. sancov.c needs to include
> tm_p.h to pull in the target-dependent prototypes. The following
> patch works for me. Is this okay?
>
> * sancov.c: Include tm_p.h.
Ok, thanks. And sorry for the breakage.
> Index: sancov.c
> ===================================================================
> --- sancov.c (revision 251817)
> +++ sancov.c (working copy)
> @@ -28,6 +28,7 @@
> #include "basic-block.h"
> #include "options.h"
> #include "flags.h"
> +#include "tm_p.h"
> #include "stmt.h"
> #include "gimple-iterator.h"
> #include "gimple-builder.h"
Jakub