Commit 02d43000 by Uros Bizjak

alpha.c (override_options): Fix -mtune error message.

	* config/alpha/alpha.c (override_options): Fix -mtune error message.

From-SVN: r157169
parent f6c86fab
2010-03-02 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/alpha.c (override_options): Fix -mtune error message.
2010-03-02 Jeff Law <law@redhat.com> 2010-03-02 Jeff Law <law@redhat.com>
* reload1.c (rtx_p, substitute_stack): Declare. * reload1.c (rtx_p, substitute_stack): Declare.
...@@ -18,8 +22,8 @@ ...@@ -18,8 +22,8 @@
2010-03-02 Jakub Jelinek <jakub@redhat.com> 2010-03-02 Jakub Jelinek <jakub@redhat.com>
Steven Bosscher <steven@gcc.gnu.org> Steven Bosscher <steven@gcc.gnu.org>
* var-tracking.c (vt_initialize): Scan insns in ebb chunks instead * var-tracking.c (vt_initialize): Scan insns in ebb chunks
of bb. instead of bb.
2010-03-02 Reza Yazdani <reza.yazdani@amd.com> 2010-03-02 Reza Yazdani <reza.yazdani@amd.com>
...@@ -48,7 +52,7 @@ ...@@ -48,7 +52,7 @@
BUILT_IN_STACK_{SAVE,RESTORE} around alloca. BUILT_IN_STACK_{SAVE,RESTORE} around alloca.
2010-03-01 Richard Guenther <rguenther@suse.de> 2010-03-01 Richard Guenther <rguenther@suse.de>
Martin Jambor <mjambor@suse.cz> Martin Jambor <mjambor@suse.cz>
PR middle-end/41250 PR middle-end/41250
* gimplify.c (gimplify_body): Unset DECL_HAS_VALUE_EXPR_P on * gimplify.c (gimplify_body): Unset DECL_HAS_VALUE_EXPR_P on
...@@ -210,8 +214,7 @@ ...@@ -210,8 +214,7 @@
PR target/43175 PR target/43175
* config/i386/i386.c (expand_vec_perm_blend): Use correct * config/i386/i386.c (expand_vec_perm_blend): Use correct
operands in V8HImode subregs. Fix operand order in VEC_MERGE operands in V8HImode subregs. Fix operand order in VEC_MERGE rtx.
rtx.
2010-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> 2010-02-26 Jan Kratochvil <jan.kratochvil@redhat.com>
...@@ -312,8 +315,7 @@ ...@@ -312,8 +315,7 @@
* optc-gen.awk: Handle -ftemplate-depth=. * optc-gen.awk: Handle -ftemplate-depth=.
* opth-gen.awk: Likewise. * opth-gen.awk: Likewise.
* c-opts.c (c_common_handle_option): Likewise. * c-opts.c (c_common_handle_option): Likewise.
* doc/invoke.texi (-ftemplate-depth-): Replace with * doc/invoke.texi (-ftemplate-depth-): Replace with -ftemplate-depth=.
-ftemplate-depth=.
2010-02-24 Jason Merrill <jason@redhat.com> 2010-02-24 Jason Merrill <jason@redhat.com>
...@@ -486,7 +488,7 @@ ...@@ -486,7 +488,7 @@
(movdi_pic_gotdata_op): Likewise. (movdi_pic_gotdata_op): Likewise.
* config/sparc/sparc.c (legitimize_pic_address): If flag_pic is 2, * config/sparc/sparc.c (legitimize_pic_address): If flag_pic is 2,
emit gen_mov{si,di}_pic_gotdata_op for the GOT slot load. emit gen_mov{si,di}_pic_gotdata_op for the GOT slot load.
2010-02-20 Uros Bizjak <ubizjak@gmail.com> 2010-02-20 Uros Bizjak <ubizjak@gmail.com>
PR target/43067 PR target/43067
...@@ -1152,8 +1154,7 @@ ...@@ -1152,8 +1154,7 @@
2010-02-03 Alexandre Oliva <aoliva@redhat.com> 2010-02-03 Alexandre Oliva <aoliva@redhat.com>
PR debug/42896 PR debug/42896
* cselib.h (struct cselib_val_struct): Add uid. Rename value to * cselib.h (struct cselib_val_struct): Add uid. Rename value to hash.
hash.
(cselib_reset_table): Renamed from... (cselib_reset_table): Renamed from...
(cselib_reset_table_with_next_value): ... this. (cselib_reset_table_with_next_value): ... this.
(cselib_get_next_uid): Renamed from... (cselib_get_next_uid): Renamed from...
......
...@@ -388,7 +388,7 @@ override_options (void) ...@@ -388,7 +388,7 @@ override_options (void)
break; break;
} }
if (i == ct_size) if (i == ct_size)
error ("bad value %qs for -mcpu switch", alpha_tune_string); error ("bad value %qs for -mtune switch", alpha_tune_string);
} }
/* Do some sanity checks on the above options. */ /* Do some sanity checks on the above options. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment