diff options
author | pfg <pfg@FreeBSD.org> | 2013-12-30 03:39:46 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-12-30 03:39:46 +0000 |
commit | 63558da0f9110285f93152cec05f2b2deb11d6b1 (patch) | |
tree | b22ed76aba1e0f646b7ae4bfef96049bf7cc95c9 /contrib/gcc/c-opts.c | |
parent | 890135ba9f0c849625a36e678b4c38e5fe2eeece (diff) | |
download | FreeBSD-src-63558da0f9110285f93152cec05f2b2deb11d6b1.zip FreeBSD-src-63558da0f9110285f93152cec05f2b2deb11d6b1.tar.gz |
MFC r259005, r259092:
gcc: Add -flax-vector-conversions
gcc: new fvisibility-ms-compat option
These are useful for compatibility with newwer gcc and clang.
Obtained from: gcc 4.3 (rev. 120572, 120688, 126088; GPLv2)
Diffstat (limited to 'contrib/gcc/c-opts.c')
-rw-r--r-- | contrib/gcc/c-opts.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/gcc/c-opts.c b/contrib/gcc/c-opts.c index a1ec3e3..6b29068 100644 --- a/contrib/gcc/c-opts.c +++ b/contrib/gcc/c-opts.c @@ -716,6 +716,10 @@ c_common_handle_option (size_t scode, const char *arg, int value) flag_implicit_templates = value; break; + case OPT_flax_vector_conversions: + flag_lax_vector_conversions = value; + break; + case OPT_fms_extensions: flag_ms_extensions = value; break; |