Deleted Added
full compact
c-opts.c (259890) c-opts.c (260074)
1/* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Neil Booth.
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under

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

15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING. If not, write to the Free
20Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2102110-1301, USA. */
22
1/* C/ObjC/C++ command line option handling.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Neil Booth.
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under

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

15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING. If not, write to the Free
20Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2102110-1301, USA. */
22
23/* $FreeBSD: stable/10/contrib/gcc/c-opts.c 259890 2013-12-25 21:59:56Z pfg $ */
23/* $FreeBSD: stable/10/contrib/gcc/c-opts.c 260074 2013-12-30 03:39:46Z pfg $ */
24/* Merged C99 inline changes from gcc trunk 122565 2007-03-05 */
25
26#include "config.h"
27#include "system.h"
28#include "coretypes.h"
29#include "tm.h"
30#include "tree.h"
31#include "c-common.h"

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

711 case OPT_fimplicit_inline_templates:
712 flag_implicit_inline_templates = value;
713 break;
714
715 case OPT_fimplicit_templates:
716 flag_implicit_templates = value;
717 break;
718
24/* Merged C99 inline changes from gcc trunk 122565 2007-03-05 */
25
26#include "config.h"
27#include "system.h"
28#include "coretypes.h"
29#include "tm.h"
30#include "tree.h"
31#include "c-common.h"

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

711 case OPT_fimplicit_inline_templates:
712 flag_implicit_inline_templates = value;
713 break;
714
715 case OPT_fimplicit_templates:
716 flag_implicit_templates = value;
717 break;
718
719 case OPT_flax_vector_conversions:
720 flag_lax_vector_conversions = value;
721 break;
722
719 case OPT_fms_extensions:
720 flag_ms_extensions = value;
721 break;
722
723 case OPT_fnext_runtime:
724 flag_next_runtime = value;
725 break;
726

--- 869 unchanged lines hidden ---
723 case OPT_fms_extensions:
724 flag_ms_extensions = value;
725 break;
726
727 case OPT_fnext_runtime:
728 flag_next_runtime = value;
729 break;
730

--- 869 unchanged lines hidden ---