From patchwork Tue Nov 13 03:13:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Include tm_p.h in asan.c Date: Mon, 12 Nov 2012 17:13:08 -0000 From: David Edelsohn X-Patchwork-Id: 198531 Message-Id: To: GCC Patches 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 -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.