OSDN Git Service

* gengtype.c (header_file): Make it static.
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Jan 2004 08:38:38 +0000 (08:38 +0000)
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Jan 2004 08:38:38 +0000 (08:38 +0000)
(write_types_process_field, write_enum_defn): Minor whitespace fixes.
* gengtype.h (header_file): No longer extern.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76140 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gengtype.c
gcc/gengtype.h

index d757597..5d732db 100644 (file)
@@ -1,3 +1,9 @@
+2004-01-19  Steven Bosscher  <stevenb@suse.de>
+
+       * gengtype.c (header_file): Make it static.
+       (write_types_process_field, write_enum_defn): Minor whitespace fixes.
+       * gengtype.h (header_file): No longer extern.
+
 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
 
        * defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
 
 2004-01-16  Jan Hubicka  <jh@suse.cz>
 
-        PR opt/11350
-        * cfgcleanup.c (try_optimize_cfg): Suppress tablejump removal
+       PR opt/11350
+       * cfgcleanup.c (try_optimize_cfg): Suppress tablejump removal
        after reload.
-        * cfgrtl.c (rtl_can_merge_blocks, cfglayout_can_merge_blocks,
-        rtl_try_redirect_by_replacing_branch): Likewise.
+       * cfgrtl.c (rtl_can_merge_blocks, cfglayout_can_merge_blocks,
+       rtl_try_redirect_by_replacing_branch): Likewise.
 
 2004-01-15  Geoffrey Keating  <geoffk@apple.com>
 
index 6655d3c..db3020d 100644 (file)
@@ -980,7 +980,7 @@ static outf_p output_files;
 
 /* The output header file that is included into pretty much every
    source file.  */
-outf_p header_file;
+static outf_p header_file;
 
 /* Number of files specified in gtfiles.  */
 #define NUM_GT_FILES (ARRAY_SIZE (all_files) - 1)
@@ -1911,8 +1911,8 @@ write_types_process_field (type_p f, const struct walk_type_data *d)
 */
 
 static void
-write_func_for_structure  (type_p orig_s, type_p s, type_p *param,
-                          const struct write_types_data *wtd)
+write_func_for_structure (type_p orig_s, type_p s, type_p *param,
+                         const struct write_types_data *wtd)
 {
   const char *fn = s->u.s.line.file;
   int i;
@@ -2306,7 +2306,7 @@ write_local (type_p structures, type_p param_structs)
 /* Write out the 'enum' definition for gt_types_enum.  */
 
 static void
-write_enum_defn  (type_p structures, type_p param_structs)
+write_enum_defn (type_p structures, type_p param_structs)
 {
   type_p s;
 
index 3a3157e..de26592 100644 (file)
@@ -156,10 +156,6 @@ struct outf
 
 typedef struct outf * outf_p;
 
-/* The output header file that is included into pretty much every
-   source file.  */
-extern outf_p header_file;
-
 /* An output file, suitable for definitions, that can see declarations
    made in INPUT_FILE and is linked into every language that uses
    INPUT_FILE.  */