aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2017-01-05 16:48:41 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2017-01-05 16:48:41 +0100
commit205d7111334700a3e23265df16340457e7d75db7 (patch)
tree01cfbc29bbff782d7f40e63896ee51f1ca3de571 /gcc
parent38a49b3cd93a857ecf22ad203a5742fce6a45f5e (diff)
downloadgcc-205d7111334700a3e23265df16340457e7d75db7.zip
gcc-205d7111334700a3e23265df16340457e7d75db7.tar.gz
gcc-205d7111334700a3e23265df16340457e7d75db7.tar.bz2
common.opt (fvect-cost-model): Remove RejectNegative flag...
* common.opt (fvect-cost-model): Remove RejectNegative flag, use 3 argument Alias with unlimited for the negative form. (fno-vect-cost-model): Removed. From-SVN: r244106
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/common.opt6
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 62884e8..37db33c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2017-01-05 Jakub Jelinek <jakub@redhat.com>
+
+ * common.opt (fvect-cost-model): Remove RejectNegative flag, use
+ 3 argument Alias with unlimited for the negative form.
+ (fno-vect-cost-model): Removed.
+
2017-01-05 Martin Liska <mliska@suse.cz>
* hsa-gen.c (gen_hsa_divmod): New function.
diff --git a/gcc/common.opt b/gcc/common.opt
index 9e751bd..a18e27d 100644
--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -2706,13 +2706,9 @@ EnumValue
Enum(vect_cost_model) String(cheap) Value(VECT_COST_MODEL_CHEAP)
fvect-cost-model
-Common RejectNegative Alias(fvect-cost-model=,dynamic)
+Common Alias(fvect-cost-model=,dynamic,unlimited)
Enables the dynamic vectorizer cost model. Preserved for backward compatibility.
-fno-vect-cost-model
-Common RejectNegative Alias(fvect-cost-model=,unlimited)
-Enables the unlimited vectorizer cost model. Preserved for backward compatibility.
-
ftree-vect-loop-version
Common Ignore
Does nothing. Preserved for backward compatibility.