diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-06-10 16:10:11 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-06-10 16:10:11 +0100 |
commit | 1cb4261144d0e97c0f0faf79fbfa0230dcedaf63 (patch) | |
tree | 0f4c67e8c37175dabfb3433ca633c71e5236840c /libcpp/include | |
parent | a51d1999d80d29451e9071149f654e301b61c16e (diff) | |
download | gcc-1cb4261144d0e97c0f0faf79fbfa0230dcedaf63.zip gcc-1cb4261144d0e97c0f0faf79fbfa0230dcedaf63.tar.gz gcc-1cb4261144d0e97c0f0faf79fbfa0230dcedaf63.tar.bz2 |
common.opt (fshow-column): Don't mark as C ObjC C++ ObjC++.
gcc:
* common.opt (fshow-column): Don't mark as C ObjC C++ ObjC++.
gcc/c-family:
* c-opts.c (c_common_handle_option): Don't handle
OPT_fshow_column.
libcpp:
* include/cpplib.h (struct cpp_options): Remove show_column.
* init.c (cpp_create_reader, post_options): Don't set show_column.
From-SVN: r160553
Diffstat (limited to 'libcpp/include')
-rw-r--r-- | libcpp/include/cpplib.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index 0828ea4..ba79262 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -1,6 +1,6 @@ /* Definitions for CPP library. Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005, 2007, 2008, 2009 + 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Written by Per Bothner, 1994-95. @@ -389,9 +389,6 @@ struct cpp_options bother trying to do macro expansion and whatnot. */ unsigned char preprocessed; - /* Print column number in error messages. */ - unsigned char show_column; - /* Nonzero means handle C++ alternate operator names. */ unsigned char operator_names; |