Deleted Added
full compact
toplev.c (18335) toplev.c (38510)
1/* Top level of GNU C compiler
2 Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 507 unchanged lines hidden (view full) ---

516int flag_gnu_linker = 0;
517#else
518int flag_gnu_linker = 1;
519#endif
520
521/* Tag all structures with __attribute__(packed) */
522int flag_pack_struct = 0;
523
1/* Top level of GNU C compiler
2 Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)

--- 507 unchanged lines hidden (view full) ---

516int flag_gnu_linker = 0;
517#else
518int flag_gnu_linker = 1;
519#endif
520
521/* Tag all structures with __attribute__(packed) */
522int flag_pack_struct = 0;
523
524/* Nonzero means that -Wformat accepts certain system-dependent formats. */
525
526int flag_format_extensions = 0;
527
524/* Table of language-independent -f options.
525 STRING is the option name. VARIABLE is the address of the variable.
526 ON_VALUE is the value to store in VARIABLE
527 if `-fSTRING' is seen as an option.
528 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
529
530struct { char *string; int *variable; int on_value;} f_options[] =
531{

--- 30 unchanged lines hidden (view full) ---

562 {"pic", &flag_pic, 1},
563 {"PIC", &flag_pic, 2},
564 {"fast-math", &flag_fast_math, 1},
565 {"common", &flag_no_common, 0},
566 {"inhibit-size-directive", &flag_inhibit_size_directive, 1},
567 {"verbose-asm", &flag_verbose_asm, 1},
568 {"gnu-linker", &flag_gnu_linker, 1},
569 {"pack-struct", &flag_pack_struct, 1},
528/* Table of language-independent -f options.
529 STRING is the option name. VARIABLE is the address of the variable.
530 ON_VALUE is the value to store in VARIABLE
531 if `-fSTRING' is seen as an option.
532 (If `-fno-STRING' is seen as an option, the opposite value is stored.) */
533
534struct { char *string; int *variable; int on_value;} f_options[] =
535{

--- 30 unchanged lines hidden (view full) ---

566 {"pic", &flag_pic, 1},
567 {"PIC", &flag_pic, 2},
568 {"fast-math", &flag_fast_math, 1},
569 {"common", &flag_no_common, 0},
570 {"inhibit-size-directive", &flag_inhibit_size_directive, 1},
571 {"verbose-asm", &flag_verbose_asm, 1},
572 {"gnu-linker", &flag_gnu_linker, 1},
573 {"pack-struct", &flag_pack_struct, 1},
574 {"format-extensions", &flag_format_extensions, 1},
570 {"bytecode", &output_bytecode, 1}
571};
572
573/* Table of language-specific options. */
574
575char *lang_options[] =
576{
577 "-ansi",

--- 3459 unchanged lines hidden ---
575 {"bytecode", &output_bytecode, 1}
576};
577
578/* Table of language-specific options. */
579
580char *lang_options[] =
581{
582 "-ansi",

--- 3459 unchanged lines hidden ---