Remove cleanups from prepare_execute_command
[deliverable/binutils-gdb.git] / gdb / f-lang.c
index e1184ee86022b81d754927a691d1381fab88e899..073d5291f7498b55301ba47718b3dc6d05dcdd67 100644 (file)
@@ -37,8 +37,6 @@
 
 /* Local functions */
 
-extern void _initialize_f_language (void);
-
 static void f_printchar (int c, struct type *type, struct ui_file * stream);
 static void f_emit_char (int c, struct type *type,
                         struct ui_file * stream, int quoter);
@@ -230,10 +228,11 @@ f_word_break_characters (void)
 
 static void
 f_collect_symbol_completion_matches (completion_tracker &tracker,
+                                    complete_symbol_mode mode,
                                     const char *text, const char *word,
                                     enum type_code code)
 {
-  default_collect_symbol_completion_matches_break_on (tracker,
+  default_collect_symbol_completion_matches_break_on (tracker, mode,
                                                      text, word, ":", code);
 }
 
@@ -244,7 +243,7 @@ static const char *f_extensions[] =
   NULL
 };
 
-const struct language_defn f_language_defn =
+extern const struct language_defn f_language_defn =
 {
   "fortran",
   "Fortran",
@@ -305,7 +304,7 @@ build_fortran_types (struct gdbarch *gdbarch)
     = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_f_type);
 
   builtin_f_type->builtin_void
-    = arch_type (gdbarch, TYPE_CODE_VOID, 1, "VOID");
+    = arch_type (gdbarch, TYPE_CODE_VOID, TARGET_CHAR_BIT, "VOID");
 
   builtin_f_type->builtin_character
     = arch_integer_type (gdbarch, TARGET_CHAR_BIT, 0, "character");
@@ -368,6 +367,4 @@ void
 _initialize_f_language (void)
 {
   f_type_data = gdbarch_data_register_post_init (build_fortran_types);
-
-  add_language (&f_language_defn);
 }
This page took 0.024626 seconds and 4 git commands to generate.