ipa-cp.c (ipcp_cloning_candidate_p): Use opt_for_fn.
[gcc.git] / gcc / hash-table.c
index 7909a9894868f4c3a890bbc075ad99cc5c7a447d..3dfde6d2170b643c1b80deea9f2e6d071ffc4ec6 100644 (file)
@@ -1,6 +1,5 @@
 /* A type-safe hash table template.
-   Copyright (C) 2012
-   Free Software Foundation, Inc.
+   Copyright (C) 2012-2014 Free Software Foundation, Inc.
    Contributed by Lawrence Crowl <crowl@google.com>
 
 This file is part of GCC.
@@ -23,7 +22,11 @@ along with GCC; see the file COPYING3.  If not see
 /* This file implements a typed hash table.
    The implementation borrows from libiberty's hashtab.  */
 
+#ifdef GENERATOR_FILE
+#include "bconfig.h"
+#else
 #include "config.h"
+#endif
 #include "system.h"
 #include "coretypes.h"
 #include "hash-table.h"
@@ -112,7 +115,7 @@ unsigned int
 hash_table_higher_prime_index (unsigned long n)
 {
   unsigned int low = 0;
-  unsigned int high = sizeof(prime_tab) / sizeof(prime_tab[0]);
+  unsigned int high = sizeof (prime_tab) / sizeof (prime_tab[0]);
 
   while (low != high)
     {