Deleted Added
full compact
flags.h (96282) flags.h (104764)
1/* Compilation switch flag definitions for GCC.
2 Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

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

14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
1/* Compilation switch flag definitions for GCC.
2 Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

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

14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
22/* $FreeBSD: head/contrib/gcc/flags.h 96282 2002-05-09 21:42:32Z obrien $ */
22/* $FreeBSD: head/contrib/gcc/flags.h 104764 2002-10-10 04:50:29Z kan $ */
23
24#ifndef GCC_FLAGS_H
25#define GCC_FLAGS_H
26
27/* Name of the input .c file being compiled. */
28extern const char *main_input_filename;
29
30enum debug_info_type

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

601extern int align_jumps_log;
602extern int align_jumps_max_skip;
603extern int align_labels;
604extern int align_labels_log;
605extern int align_labels_max_skip;
606extern int align_functions;
607extern int align_functions_log;
608
23
24#ifndef GCC_FLAGS_H
25#define GCC_FLAGS_H
26
27/* Name of the input .c file being compiled. */
28extern const char *main_input_filename;
29
30enum debug_info_type

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

601extern int align_jumps_log;
602extern int align_jumps_max_skip;
603extern int align_labels;
604extern int align_labels_log;
605extern int align_labels_max_skip;
606extern int align_functions;
607extern int align_functions_log;
608
609/* Like align_functions_log above, but used by front-ends to force the
610 minimum function alignment. Zero means no alignment is forced. */
611extern int force_align_functions_log;
612
609/* Nonzero if we dump in VCG format, not plain text. */
610extern int dump_for_graph;
611
612/* Selection of the graph form. */
613enum graph_dump_types
614{
615 no_graph = 0,
616 vcg

--- 30 unchanged lines hidden ---
613/* Nonzero if we dump in VCG format, not plain text. */
614extern int dump_for_graph;
615
616/* Selection of the graph form. */
617enum graph_dump_types
618{
619 no_graph = 0,
620 vcg

--- 30 unchanged lines hidden ---