Deleted Added
full compact
c-tree.h (96276) c-tree.h (103453)
1/* Definitions for C parsing and type checking.
2 Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
3 1999, 2000, 2001, 2002 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/* Definitions for C parsing and type checking.
2 Copyright (C) 1987, 1993, 1994, 1995, 1997, 1998,
3 1999, 2000, 2001, 2002 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/c-tree.h 96276 2002-05-09 21:12:10Z obrien $ */
22/* $FreeBSD: head/contrib/gcc/c-tree.h 103453 2002-09-17 04:14:38Z kan $ */
23
24#ifndef GCC_C_TREE_H
25#define GCC_C_TREE_H
26
27#include "c-common.h"
28
29/* Language-dependent contents of an identifier. */
30

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

284
285extern int current_function_returns_null;
286
287/* Set to 0 at beginning of a function definition, set to 1 if
288 a call to a noreturn function is seen. */
289
290extern int current_function_returns_abnormally;
291
23
24#ifndef GCC_C_TREE_H
25#define GCC_C_TREE_H
26
27#include "c-common.h"
28
29/* Language-dependent contents of an identifier. */
30

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

284
285extern int current_function_returns_null;
286
287/* Set to 0 at beginning of a function definition, set to 1 if
288 a call to a noreturn function is seen. */
289
290extern int current_function_returns_abnormally;
291
292/* Nonzero means the expression being parsed will never be evaluated.
293 This is a count, since unevaluated expressions can nest. */
294
295extern int skip_evaluation;
296
297/* Nonzero means `$' can be in an identifier. */
298
299extern int dollars_in_ident;
300
301/* Nonzero means allow type mismatches in conditional expressions;
302 just make their values `void'. */
303
304extern int flag_cond_mismatch;

--- 83 unchanged lines hidden ---
292/* Nonzero means `$' can be in an identifier. */
293
294extern int dollars_in_ident;
295
296/* Nonzero means allow type mismatches in conditional expressions;
297 just make their values `void'. */
298
299extern int flag_cond_mismatch;

--- 83 unchanged lines hidden ---