This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Include tm_p.h in asan.c


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]