source: branches/ffigen-apple-gcc-6465/ffigen4/source/gcc-5465-toplev.c.diff@ 66

Last change on this file since 66 was 55, checked in by gb, 16 years ago

New.

File size: 1.2 KB
  • toplev.c

     
    10811081  init_cgraph ();
    10821082  init_final (main_input_filename);
    10831083  coverage_init (aux_base_name);
     1084  if (flag_syntax_only)
     1085    ffi_init (asm_out_file, main_input_filename);
    10841086
    10851087  timevar_push (TV_PARSE);
    10861088
     
    13461348           , indent, *indent != 0 ? " " : "",
    13471349           lang_hooks.name, version_string, TARGET_NAME,
    13481350           indent, __VERSION__);
    1349   fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
    1350            indent, *indent != 0 ? " " : "",
    1351            PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
     1351  if (flag_syntax_only)
     1352    print_ffi_version (file, indent);
     1353  else
     1354    fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
     1355             indent, *indent != 0 ? " " : "",
     1356             PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
    13521357}
    13531358
    13541359/* Print an option value and return the adjusted position in the line.
     
    22142219  input_filename = "<built-in>";
    22152220  input_line = 0;
    22162221#endif
     2222  if (flag_syntax_only)
     2223    ffi_early_init ();
    22172224  if (lang_hooks.init () == 0)
    22182225    return 0;
    22192226  input_location = save_loc;
Note: See TracBrowser for help on using the repository browser.