diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2013-11-25 13:23:09 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2013-11-25 13:23:09 +0000 |
commit | ae16b241ce766415d8646662b9389309ae130dc2 (patch) | |
tree | 34e5ef4f25f25225a66759c32cf244dc1022caec /gcc | |
parent | ecd51813f147824a7d44e788becb306b37cca889 (diff) | |
download | gcc-ae16b241ce766415d8646662b9389309ae130dc2.zip gcc-ae16b241ce766415d8646662b9389309ae130dc2.tar.gz gcc-ae16b241ce766415d8646662b9389309ae130dc2.tar.bz2 |
re PR bootstrap/59260 (fold-const.c:14871:5: error: 'hash_table' has not been declared)
PR bootstrap/59260
* fold-const.c: Include hash-table.h.
From-SVN: r205352
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fold-const.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 240a17c..d899670 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-11-25 Andrew Macleod <amacleod@redhat.com> + + PR bootstrap/59260 + * fold-const.c: Include hash-table.h. + 2013-11-25 Marek Polacek <polacek@redhat.com> PR sanitizer/59258 diff --git a/gcc/fold-const.c b/gcc/fold-const.c index f91673d..d99cd93 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -67,6 +67,7 @@ along with GCC; see the file COPYING3. If not see #include "gimple.h" #include "gimplify.h" #include "tree-dfa.h" +#include "hash-table.h" /* Required for ENABLE_FOLD_CHECKING. */ /* Nonzero if we are folding constants inside an initializer; zero otherwise. */ |