aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>2012-11-13 03:14:28 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2012-11-12 22:14:28 -0500
commit7f71fad91865a7efecac5d8e82c2f4ac52950363 (patch)
tree5194be376f41f76d5e995531a657747abfaa4695 /gcc
parent3c31b9b46a46806038f1ad7d58f604150acc92cb (diff)
downloadgcc-7f71fad91865a7efecac5d8e82c2f4ac52950363.zip
gcc-7f71fad91865a7efecac5d8e82c2f4ac52950363.tar.gz
gcc-7f71fad91865a7efecac5d8e82c2f4ac52950363.tar.bz2
* asan.c: Include tm_p.h
From-SVN: r193466
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/asan.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9cad807..dff8011 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2012-11-12 David Edelsohn <dje.gcc@gmail.com>
+
+ * asan.c: Include tm_p.h
+
2012-11-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/55195
diff --git a/gcc/asan.c b/gcc/asan.c
index 6e7f20f..1bd4cfd 100644
--- a/gcc/asan.c
+++ b/gcc/asan.c
@@ -32,6 +32,7 @@ along with GCC; see the file COPYING3. If not see
#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.