X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fc-common.c;h=983cd29100ddab49c57b74ccad0145017e5b1c87;hb=c6a06e1fe0602704f8ef7f7c8597b5c3edd12b3d;hp=1a20b474fca84e45bf8bc545f63031381e5642f8;hpb=0390133031a20f422ddbd365dd9d6ab71e8eca4a;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/c-common.c b/gcc/c-common.c index 1a20b474fca..983cd29100d 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -198,8 +198,26 @@ int allow_pch = 1; /* Switches common to the C front ends. */ /* Nonzero if prepreprocessing only. */ + int flag_preprocess_only; +/* Nonzero means don't output line number information. */ + +char flag_no_line_commands; + +/* Nonzero causes -E output not to be done, but directives such as + #define that have side effects are still obeyed. */ + +char flag_no_output; + +/* Nonzero means dump macros in some fashion. */ + +char flag_dump_macros; + +/* Nonzero means pass #include lines through to the output. */ + +char flag_dump_includes; + /* The file name to which we should write a precompiled header, or NULL if no header will be written in this compile. */ @@ -3410,8 +3428,6 @@ c_common_nodes_and_builtins () = build_pointer_type (build_qualified_type (char_type_node, TYPE_QUAL_CONST)); - (*targetm.init_builtins) (); - /* This is special for C++ so functions can be overloaded. */ wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE); wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node)); @@ -3600,6 +3616,8 @@ c_common_nodes_and_builtins () #include "builtins.def" #undef DEF_BUILTIN + (*targetm.init_builtins) (); + main_identifier_node = get_identifier ("main"); }