1 /* Compilation switch flag definitions for GCC. 2 Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002 3 Free Software Foundation, Inc. 4 5 This file is part of GCC. 6 7 GCC is free software; you can redistribute it and/or modify it under 8 the terms of the GNU General Public License as published by the Free 9 Software Foundation; either version 2, or (at your option) any later 10 version. 11 12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY 13 WARRANTY; without even the implied warranty of MERCHANTABILITY or 14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15 for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with GCC; see the file COPYING. If not, write to the Free 19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 20 02111-1307, USA. */ 21 22 #ifndef GCC_FLAGS_H 23 #define GCC_FLAGS_H 24 25 /* Name of the input .c file being compiled. */ 26 extern const char *main_input_filename; 27 28 enum debug_info_type 29 { 30 NO_DEBUG, /* Write no debug info. */ 31 DBX_DEBUG, /* Write BSD .stabs for DBX (using dbxout.c). */ 32 SDB_DEBUG, /* Write COFF for (old) SDB (using sdbout.c). */ 33 DWARF_DEBUG, /* Write Dwarf debug info (using dwarfout.c). */ 34 DWARF2_DEBUG, /* Write Dwarf v2 debug info (using dwarf2out.c). */ 35 XCOFF_DEBUG, /* Write IBM/Xcoff debug info (using dbxout.c). */ 36 VMS_DEBUG, /* Write VMS debug info (using vmsdbgout.c). */ 37 VMS_AND_DWARF2_DEBUG /* Write VMS debug info (using vmsdbgout.c). 38 and DWARF v2 debug info (using dwarf2out.c). */ 39 }; 40 41 /* Specify which kind of debugging info to generate. */ 42 extern enum debug_info_type write_symbols; 43 44 enum debug_info_level 45 { 46 DINFO_LEVEL_NONE, /* Write no debugging info. */ 47 DINFO_LEVEL_TERSE, /* Write minimal info to support tracebacks only. */ 48 DINFO_LEVEL_NORMAL, /* Write info for all declarations (and line table). */ 49 DINFO_LEVEL_VERBOSE /* Write normal info plus #define/#undef info. */ 50 }; 51 52 /* Specify how much debugging info to generate. */ 53 extern enum debug_info_level debug_info_level; 54 55 /* Nonzero means use GNU-only extensions in the generated symbolic 56 debugging information. */ 57 extern int use_gnu_debug_info_extensions; 58 59 /* Nonzero means do optimizations. -opt. */ 60 61 extern int optimize; 62 63 /* Nonzero means optimize for size. -Os. */ 64 65 extern int optimize_size; 66 67 /* Don't print functions as they are compiled and don't print 68 times taken by the various passes. -quiet. */ 69 70 extern int quiet_flag; 71 72 /* Print times taken by the various passes. -ftime-report. */ 73 74 extern int time_report; 75 76 /* Print memory still in use at end of compilation (which may have little 77 to do with peak memory consumption). -fmem-report. */ 78 79 extern int mem_report; 80 81 /* Don't print warning messages. -w. */ 82 83 extern int inhibit_warnings; 84 85 /* Don't suppress warnings from system headers. -Wsystem-headers. */ 86 87 extern int warn_system_headers; 88 89 /* Do print extra warnings (such as for uninitialized variables). -W. */ 90 91 extern int extra_warnings; 92 93 /* Nonzero to warn about unused variables, functions et.al. Use 94 set_Wunused() to update the -Wunused-* flags that correspond to the 95 -Wunused option. */ 96 97 extern void set_Wunused PARAMS ((int setting)); 98 99 extern int warn_unused_function; 100 extern int warn_unused_label; 101 extern int warn_unused_parameter; 102 extern int warn_unused_variable; 103 extern int warn_unused_value; 104 105 /* Nonzero to warn about code which is never reached. */ 106 107 extern int warn_notreached; 108 109 /* Nonzero means warn if inline function is too large. */ 110 111 extern int warn_inline; 112 113 /* Nonzero to warn about variables used before they are initialized. */ 114 115 extern int warn_uninitialized; 116 117 /* Zero if unknown pragmas are ignored 118 One if the compiler should warn about an unknown pragma not in 119 a system include file. 120 Greater than one if the compiler should warn for all unknown 121 pragmas. */ 122 123 extern int warn_unknown_pragmas; 124 125 /* Nonzero means warn about all declarations which shadow others. */ 126 127 extern int warn_shadow; 128 129 /* Warn if a switch on an enum, that does not have a default case, 130 fails to have a case for every enum value. */ 131 132 extern int warn_switch; 133 134 /* Warn if a switch does not have a default case. */ 135 136 extern int warn_switch_default; 137 138 /* Warn if a switch on an enum fails to have a case for every enum 139 value (regardless of the presence or otherwise of a default case). */ 140 141 extern int warn_switch_enum; 142 143 /* Nonzero means warn about function definitions that default the return type 144 or that use a null return and have a return-type other than void. */ 145 146 extern int warn_return_type; 147 148 /* Warn about functions which might be candidates for attribute noreturn. */ 149 150 extern int warn_missing_noreturn; 151 152 /* Nonzero means warn about pointer casts that increase the required 153 alignment of the target type (and might therefore lead to a crash 154 due to a misaligned access). */ 155 156 extern int warn_cast_align; 157 158 /* Nonzero means warn about any objects definitions whose size is larger 159 than N bytes. Also want about function definitions whose returned 160 values are larger than N bytes. The value N is in `larger_than_size'. */ 161 162 extern int warn_larger_than; 163 extern HOST_WIDE_INT larger_than_size; 164 165 /* Nonzero means warn about any function whose stack usage is larger 166 than N bytes. The value N is in `stack_larger_than_size'. */ 167 168 extern int warn_stack_larger_than; 169 extern HOST_WIDE_INT stack_larger_than_size; 170 171 /* Warn if a function returns an aggregate, 172 since there are often incompatible calling conventions for doing this. */ 173 174 extern int warn_aggregate_return; 175 176 /* Warn if packed attribute on struct is unnecessary and inefficient. */ 177 178 extern int warn_packed; 179 180 /* Warn when gcc pads a structure to an alignment boundary. */ 181 182 extern int warn_padded; 183 184 /* Warn when an optimization pass is disabled. */ 185 186 extern int warn_disabled_optimization; 187 188 /* Nonzero means warn about uses of __attribute__((deprecated)) 189 declarations. */ 190 191 extern int warn_deprecated_decl; 192 193 /* Nonzero means warn about constructs which might not be strict 194 aliasing safe. */ 195 196 extern int warn_strict_aliasing; 197 198 /* Nonzero means warn about any automatic declaration whose size is not 199 constant. */ 200 201 extern int warn_variable_decl; 202 203 /* Nonzero if generating code to do profiling. */ 204 205 extern int profile_flag; 206 207 /* Nonzero if generating code to profile program flow graph arcs. */ 208 209 extern int profile_arc_flag; 210 211 /* Nonzero if generating info for gcov to calculate line test coverage. */ 212 213 extern int flag_test_coverage; 214 215 /* Nonzero indicates that branch taken probabilities should be calculated. */ 216 217 extern int flag_branch_probabilities; 218 219 /* Nonzero if basic blocks should be reordered. */ 220 221 extern int flag_reorder_blocks; 222 223 /* Nonzero if functions should be reordered. */ 224 225 extern int flag_reorder_functions; 226 227 /* Nonzero if registers should be renamed. */ 228 229 extern int flag_rename_registers; 230 231 /* Nonzero for -pedantic switch: warn about anything 232 that standard C forbids. */ 233 234 extern int pedantic; 235 236 /* Temporarily suppress certain warnings. 237 This is set while reading code from a system header file. */ 238 239 extern int in_system_header; 240 241 /* Nonzero for -dp: annotate the assembly with a comment describing the 242 pattern and alternative used. */ 243 244 extern int flag_print_asm_name; 245 246 /* Now the symbols that are set with `-f' switches. */ 247 248 /* Nonzero means `char' should be signed. */ 249 250 extern int flag_signed_char; 251 252 /* Nonzero means give an enum type only as many bytes as it needs. */ 253 254 extern int flag_short_enums; 255 256 /* Nonzero for -fcaller-saves: allocate values in regs that need to 257 be saved across function calls, if that produces overall better code. 258 Optional now, so people can test it. */ 259 260 extern int flag_caller_saves; 261 262 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */ 263 264 extern int flag_pcc_struct_return; 265 266 /* Nonzero for -fforce-mem: load memory value into a register 267 before arithmetic on it. This makes better cse but slower compilation. */ 268 269 extern int flag_force_mem; 270 271 /* Nonzero for -fforce-addr: load memory address into a register before 272 reference to memory. This makes better cse but slower compilation. */ 273 274 extern int flag_force_addr; 275 276 /* Nonzero for -fdefer-pop: don't pop args after each function call; 277 instead save them up to pop many calls' args with one insns. */ 278 279 extern int flag_defer_pop; 280 281 /* Nonzero for -ffloat-store: don't allocate floats and doubles 282 in extended-precision registers. */ 283 284 extern int flag_float_store; 285 286 /* Nonzero enables strength-reduction in loop.c. */ 287 288 extern int flag_strength_reduce; 289 290 /* Nonzero enables loop unrolling in unroll.c. Only loops for which the 291 number of iterations can be calculated at compile-time (UNROLL_COMPLETELY, 292 UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are 293 unrolled. */ 294 295 extern int flag_unroll_loops; 296 297 /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled. 298 This is generally not a win. */ 299 300 extern int flag_unroll_all_loops; 301 302 /* Nonzero forces all invariant computations in loops to be moved 303 outside the loop. */ 304 305 extern int flag_move_all_movables; 306 307 /* Nonzero enables prefetch optimizations for arrays in loops. */ 308 309 extern int flag_prefetch_loop_arrays; 310 311 /* Nonzero forces all general induction variables in loops to be 312 strength reduced. */ 313 314 extern int flag_reduce_all_givs; 315 316 /* Nonzero for -fcse-follow-jumps: 317 have cse follow jumps to do a more extensive job. */ 318 319 extern int flag_cse_follow_jumps; 320 321 /* Nonzero for -fcse-skip-blocks: 322 have cse follow a branch around a block. */ 323 324 extern int flag_cse_skip_blocks; 325 326 /* Nonzero for -fexpensive-optimizations: 327 perform miscellaneous relatively-expensive optimizations. */ 328 extern int flag_expensive_optimizations; 329 330 /* Nonzero for -fwritable-strings: 331 store string constants in data segment and don't uniquize them. */ 332 333 extern int flag_writable_strings; 334 335 /* Nonzero means don't put addresses of constant functions in registers. 336 Used for compiling the Unix kernel, where strange substitutions are 337 done on the assembly output. */ 338 339 extern int flag_no_function_cse; 340 341 /* Nonzero for -fomit-frame-pointer: 342 don't make a frame pointer in simple functions that don't require one. */ 343 344 extern int flag_omit_frame_pointer; 345 346 /* Nonzero to inhibit use of define_optimization peephole opts. */ 347 348 extern int flag_no_peephole; 349 350 /* Nonzero means all references through pointers are volatile. */ 351 352 extern int flag_volatile; 353 354 /* Nonzero means treat all global and extern variables as volatile. */ 355 356 extern int flag_volatile_global; 357 358 /* Nonzero means treat all static variables as volatile. */ 359 360 extern int flag_volatile_static; 361 362 /* Nonzero allows GCC to optimize sibling and tail recursive calls. */ 363 364 extern int flag_optimize_sibling_calls; 365 366 /* Nonzero means the front end generally wants `errno' maintained by math 367 operations, like built-in SQRT. */ 368 369 extern int flag_errno_math; 370 371 /* Nonzero means that unsafe floating-point math optimizations are allowed 372 for the sake of speed. IEEE compliance is not guaranteed, and operations 373 are allowed to assume that their arguments and results are "normal" 374 (e.g., nonnegative for SQRT). */ 375 376 extern int flag_unsafe_math_optimizations; 377 378 /* Nonzero means that no NaNs or +-Infs are expected. */ 379 380 extern int flag_finite_math_only; 381 382 /* Zero means that floating-point math operations cannot generate a 383 (user-visible) trap. This is the case, for example, in nonstop 384 IEEE 754 arithmetic. */ 385 386 extern int flag_trapping_math; 387 388 /* 0 means straightforward implementation of complex divide acceptable. 389 1 means wide ranges of inputs must work for complex divide. 390 2 means C99-like requirements for complex divide (not yet implemented). */ 391 392 extern int flag_complex_divide_method; 393 394 /* Nonzero means to run loop optimizations twice. */ 395 396 extern int flag_rerun_loop_opt; 397 398 /* Nonzero means make functions that look like good inline candidates 399 go inline. */ 400 401 extern int flag_inline_functions; 402 403 /* Nonzero for -fkeep-inline-functions: even if we make a function 404 go inline everywhere, keep its definition around for debugging 405 purposes. */ 406 407 extern int flag_keep_inline_functions; 408 409 /* Nonzero means that functions declared `inline' will be treated 410 as `static'. Prevents generation of zillions of copies of unused 411 static inline functions; instead, `inlines' are written out 412 only when actually used. Used in conjunction with -g. Also 413 does the right thing with #pragma interface. */ 414 415 extern int flag_no_inline; 416 417 /* Nonzero means that we don't want inlining by virtue of -fno-inline, 418 not just because the tree inliner turned us off. */ 419 420 extern int flag_really_no_inline; 421 422 /* Nonzero if we are only using compiler to check syntax errors. */ 423 424 extern int flag_syntax_only; 425 426 /* Nonzero means we should save auxiliary info into a .X file. */ 427 428 extern int flag_gen_aux_info; 429 430 /* Nonzero means make the text shared if supported. */ 431 432 extern int flag_shared_data; 433 434 /* flag_schedule_insns means schedule insns within basic blocks (before 435 local_alloc). 436 flag_schedule_insns_after_reload means schedule insns after 437 global_alloc. */ 438 439 extern int flag_schedule_insns; 440 extern int flag_schedule_insns_after_reload; 441 442 /* The following flags have effect only for scheduling before register 443 allocation: 444 445 flag_schedule_interblock means schedule insns across basic blocks. 446 flag_schedule_speculative means allow speculative motion of non-load insns. 447 flag_schedule_speculative_load means allow speculative motion of some 448 load insns. 449 flag_schedule_speculative_load_dangerous allows speculative motion of more 450 load insns. */ 451 452 extern int flag_schedule_interblock; 453 extern int flag_schedule_speculative; 454 extern int flag_schedule_speculative_load; 455 extern int flag_schedule_speculative_load_dangerous; 456 457 /* flag_branch_on_count_reg means try to replace add-1,compare,branch tupple 458 by a cheaper branch, on a count register. */ 459 extern int flag_branch_on_count_reg; 460 461 /* This option is set to 1 on -fsingle-precision-constant option which is 462 used to convert the floating point constants to single precision 463 constants. */ 464 465 extern int flag_single_precision_constant; 466 467 /* Nonzero means put things in delayed-branch slots if supported. */ 468 469 extern int flag_delayed_branch; 470 471 /* Nonzero means suppress output of instruction numbers and line number 472 notes in debugging dumps. */ 473 474 extern int flag_dump_unnumbered; 475 476 /* Nonzero means change certain warnings into errors. 477 Usually these are warnings about failure to conform to some standard. */ 478 479 extern int flag_pedantic_errors; 480 481 /* Nonzero means generate position-independent code. 1 vs 2 for a 482 target-dependent "small" or "large" mode. */ 483 484 extern int flag_pic; 485 486 /* Nonzero if we are compiling position independent code for executable. 487 1 vs 2 for a target-dependent "small" or "large" mode. */ 488 489 extern int flag_pie; 490 491 /* Nonzero if we are compiling code for a shared library, zero for 492 executable. */ 493 494 extern int flag_shlib; 495 496 /* Nonzero means generate extra code for exception handling and enable 497 exception handling. */ 498 499 extern int flag_exceptions; 500 501 /* Nonzero means generate frame unwind info table when supported */ 502 503 extern int flag_unwind_tables; 504 505 /* Nonzero means generate frame unwind info table exact at each insn boundary */ 506 507 extern int flag_asynchronous_unwind_tables; 508 509 /* Nonzero means don't place uninitialized global data in common storage 510 by default. */ 511 512 extern int flag_no_common; 513 514 /* -finhibit-size-directive inhibits output of .size for ELF. 515 This is used only for compiling crtstuff.c, 516 and it may be extended to other effects 517 needed for crtstuff.c on other systems. */ 518 extern int flag_inhibit_size_directive; 519 520 /* Nonzero means place each function into its own section on those platforms 521 which support arbitrary section names and unlimited numbers of sections. */ 522 523 extern int flag_function_sections; 524 525 /* ... and similar for data. */ 526 527 extern int flag_data_sections; 528 529 /* -fverbose-asm causes extra commentary information to be produced in 530 the generated assembly code (to make it more readable). This option 531 is generally only of use to those who actually need to read the 532 generated assembly code (perhaps while debugging the compiler itself). 533 -fno-verbose-asm, the default, causes the extra information 534 to not be added and is useful when comparing two assembler files. */ 535 536 extern int flag_verbose_asm; 537 538 /* -dA causes debug information to be produced in 539 the generated assembly code (to make it more readable). This option 540 is generally only of use to those who actually need to read the 541 generated assembly code (perhaps while debugging the compiler itself). 542 Currently, this switch is only used by dwarfout.c; however, it is intended 543 to be a catchall for printing debug information in the assembler file. */ 544 545 extern int flag_debug_asm; 546 547 extern int flag_dump_rtl_in_asm; 548 549 /* -fgnu-linker specifies use of the GNU linker for initializations. 550 -fno-gnu-linker says that collect will be used. */ 551 extern int flag_gnu_linker; 552 553 /* Tag all structures with __attribute__(packed) */ 554 extern int flag_pack_struct; 555 556 /* This flag is only tested if alias checking is enabled. 557 0 if pointer arguments may alias each other. True in C. 558 1 if pointer arguments may not alias each other but may alias 559 global variables. 560 2 if pointer arguments may not alias each other and may not 561 alias global variables. True in Fortran. 562 The value is ignored if flag_alias_check is 0. */ 563 extern int flag_argument_noalias; 564 565 /* Nonzero if we should do (language-dependent) alias analysis. 566 Typically, this analysis will assume that expressions of certain 567 types do not alias expressions of certain other types. Only used 568 if alias analysis (in general) is enabled. */ 569 extern int flag_strict_aliasing; 570 571 /* Emit code to probe the stack, to help detect stack overflow; also 572 may cause large objects to be allocated dynamically. */ 573 extern int flag_stack_check; 574 575 /* Do the full regmove optimization pass. */ 576 extern int flag_regmove; 577 578 /* Instrument functions with calls at entry and exit, for profiling. */ 579 extern int flag_instrument_function_entry_exit; 580 581 /* Perform a peephole pass before sched2. */ 582 extern int flag_peephole2; 583 584 /* Try to guess branch probablities. */ 585 extern int flag_guess_branch_prob; 586 587 /* -fcheck-bounds causes gcc to generate array bounds checks. 588 For C, C++ and ObjC: defaults off. 589 For Java: defaults to on. 590 For Fortran: defaults to off. */ 591 extern int flag_bounds_check; 592 593 /* This will attempt to merge constant section constants, if 1 only 594 string constants and constants from constant pool, if 2 also constant 595 variables. */ 596 extern int flag_merge_constants; 597 598 /* If one, renumber instruction UIDs to reduce the number of 599 unused UIDs if there are a lot of instructions. If greater than 600 one, unconditionally renumber instruction UIDs. */ 601 extern int flag_renumber_insns; 602 603 /* Other basic status info about current function. */ 604 605 /* Nonzero means current function must be given a frame pointer. 606 Set in stmt.c if anything is allocated on the stack there. 607 Set in reload1.c if anything is allocated on the stack there. */ 608 609 extern int frame_pointer_needed; 610 611 /* Nonzero if the generated code should trap on signed overflow 612 for PLUS / SUB / MULT. */ 613 extern int flag_trapv; 614 615 /* Value of the -G xx switch, and whether it was passed or not. */ 616 extern int g_switch_value; 617 extern int g_switch_set; 618 619 /* Values of the -falign-* flags: how much to align labels in code. 620 0 means `use default', 1 means `don't align'. 621 For each variable, there is an _log variant which is the power 622 of two not less than the variable, for .align output. */ 623 624 extern int align_loops; 625 extern int align_loops_log; 626 extern int align_loops_max_skip; 627 extern int align_jumps; 628 extern int align_jumps_log; 629 extern int align_jumps_max_skip; 630 extern int align_labels; 631 extern int align_labels_log; 632 extern int align_labels_max_skip; 633 extern int align_functions; 634 extern int align_functions_log; 635 636 /* Like align_functions_log above, but used by front-ends to force the 637 minimum function alignment. Zero means no alignment is forced. */ 638 extern int force_align_functions_log; 639 640 /* Nonzero if we dump in VCG format, not plain text. */ 641 extern int dump_for_graph; 642 643 /* Selection of the graph form. */ 644 enum graph_dump_types 645 { 646 no_graph = 0, 647 vcg 648 }; 649 extern enum graph_dump_types graph_dump_format; 650 651 /* Nonzero means ignore `#ident' directives. 0 means handle them. 652 On SVR4 targets, it also controls whether or not to emit a 653 string identifying the compiler. */ 654 655 extern int flag_no_ident; 656 657 /* Nonzero if we want to perform global cse. */ 658 659 extern int flag_gcse; 660 661 /* Nonzero if we want to perform enhanced load motion during gcse. */ 662 663 extern int flag_gcse_lm; 664 665 /* Nonzero if we want to perform store motion after gcse. */ 666 667 extern int flag_gcse_sm; 668 669 670 /* Nonzero means we should do dwarf2 duplicate elimination. */ 671 672 extern int flag_eliminate_dwarf2_dups; 673 674 /* Nonzero means to collect statistics which might be expensive 675 and to print them when we are done. */ 676 extern int flag_detailed_statistics; 677 678 /* Nonzero means enable synchronous exceptions for non-call instructions. */ 679 extern int flag_non_call_exceptions; 680 681 /* Nonzero means put zero initialized data in the bss section. */ 682 extern int flag_zero_initialized_in_bss; 683 684 /* Nonzero means disable transformations observable by signaling NaNs. */ 685 extern int flag_signaling_nans; 686 687 /* A string that's used when a random name is required. NULL means 688 to make it really random. */ 689 690 extern const char *flag_random_seed; 691 692 /* True if the given mode has a NaN representation and the treatment of 693 NaN operands is important. Certain optimizations, such as folding 694 x * 0 into x, are not correct for NaN operands, and are normally 695 disabled for modes with NaNs. The user can ask for them to be 696 done anyway using the -funsafe-math-optimizations switch. */ 697 #define HONOR_NANS(MODE) \ 698 (MODE_HAS_NANS (MODE) && !flag_finite_math_only) 699 700 /* Like HONOR_NANs, but true if we honor signaling NaNs (or sNaNs). */ 701 #define HONOR_SNANS(MODE) (flag_signaling_nans && HONOR_NANS (MODE)) 702 703 /* As for HONOR_NANS, but true if the mode can represent infinity and 704 the treatment of infinite values is important. */ 705 #define HONOR_INFINITIES(MODE) \ 706 (MODE_HAS_INFINITIES (MODE) && !flag_finite_math_only) 707 708 /* Like HONOR_NANS, but true if the given mode distinguishes between 709 postive and negative zero, and the sign of zero is important. */ 710 #define HONOR_SIGNED_ZEROS(MODE) \ 711 (MODE_HAS_SIGNED_ZEROS (MODE) && !flag_unsafe_math_optimizations) 712 713 /* Like HONOR_NANS, but true if given mode supports sign-dependent rounding, 714 and the rounding mode is important. */ 715 #define HONOR_SIGN_DEPENDENT_ROUNDING(MODE) \ 716 (MODE_HAS_SIGN_DEPENDENT_ROUNDING (MODE) && !flag_unsafe_math_optimizations) 717 718 /* Nonzero means use propolice as a stack protection method */ 719 720 extern int flag_propolice_protection; 721 extern int flag_stack_protection; 722 extern int flag_strong_protection; 723 724 /* Warn when not issuing stack smashing protection for some reason */ 725 726 extern int warn_stack_protector; 727 728 #endif /* ! GCC_FLAGS_H */ 729