diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-29 00:14:50 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-29 00:14:50 +0000 |
commit | ea269688eb364b8fae1926eb56bf4e3404f51873 (patch) | |
tree | 892987a4142b96ee5a4720642b209c189a7668e0 /gcc/vec.h | |
parent | 2187c7adb44bb62b6129be15f7a419f3321d1d19 (diff) | |
download | gcc-ea269688eb364b8fae1926eb56bf4e3404f51873.tar.gz |
gcc/ChangeLog:
* vec.h: Include statistics.h
* Makefile.in: Introduce VEC_H. Replace all vec.h dependencies
with VEC_H.
lto/ChangeLog:
* Make-lang.in: Replace vec.h dependency with VEC_H.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160010 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vec.h')
-rw-r--r-- | gcc/vec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/vec.h b/gcc/vec.h index 8cb9c5871b6..c32bf8829e3 100644 --- a/gcc/vec.h +++ b/gcc/vec.h @@ -22,6 +22,8 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_VEC_H #define GCC_VEC_H +#include "statistics.h" /* For MEM_STAT_DECL. */ + /* The macros here implement a set of templated vector types and associated interfaces. These templates are implemented with macros, as we're not in C++ land. The interface functions are |