gcc/asan.c probably should have been split into two files because it
works at multiple levels. But given that it invokes
ASM_GENERATE_INTERNAL_LABEL, it needs to include tm_p.h to include
<target>-protos.h.
Committed as obvious to allow AIX bootstrap to proceed.
* asan.c: Include tm_p.h
Index: asan.c
===================================================================
--- asan.c (revision 193465)
+++ asan.c (working copy)
@@ -32,6 +32,7 @@
#include "expr.h"
#include "optabs.h"
#include "output.h"
+#include "tm_p.h"
/* AddressSanitizer finds out-of-bounds and use-after-free bugs
with <2x slowdown on average.