diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-10 15:10:11 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-10 15:10:11 +0000 |
commit | abf6a6177a213072a1de6bbec0045276b77c64e1 (patch) | |
tree | 0f4c67e8c37175dabfb3433ca633c71e5236840c /libcpp/init.c | |
parent | 5ee3ee8027fec5b20af20f121288b6756f6f9d5e (diff) | |
download | linaro-gcc-abf6a6177a213072a1de6bbec0045276b77c64e1.tar.gz linaro-gcc-abf6a6177a213072a1de6bbec0045276b77c64e1.tar.bz2 linaro-gcc-abf6a6177a213072a1de6bbec0045276b77c64e1.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160553 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/init.c')
-rw-r--r-- | libcpp/init.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libcpp/init.c b/libcpp/init.c index ae5ae4548c8..c5b8c28e342 100644 --- a/libcpp/init.c +++ b/libcpp/init.c @@ -156,7 +156,6 @@ cpp_create_reader (enum c_lang lang, hash_table *table, CPP_OPTION (pfile, warn_multichar) = 1; CPP_OPTION (pfile, discard_comments) = 1; CPP_OPTION (pfile, discard_comments_in_macro_exp) = 1; - CPP_OPTION (pfile, show_column) = 1; CPP_OPTION (pfile, tabstop) = 8; CPP_OPTION (pfile, operator_names) = 1; CPP_OPTION (pfile, warn_trigraphs) = 2; @@ -717,8 +716,6 @@ post_options (cpp_reader *pfile) { CPP_OPTION (pfile, cplusplus_comments) = 0; - /* Traditional CPP does not accurately track column information. */ - CPP_OPTION (pfile, show_column) = 0; CPP_OPTION (pfile, trigraphs) = 0; CPP_OPTION (pfile, warn_trigraphs) = 0; } |