diff options
| author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-10 09:32:46 +0000 |
|---|---|---|
| committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-10 09:32:46 +0000 |
| commit | a7d5a19b2d83f058e0654c1b61b3d08f8a26d077 (patch) | |
| tree | a663705da7bc41e27351647ba6cd3f4ab6a950a0 | |
| parent | e91cc49372d4d054f6ad179317788183620426ce (diff) | |
| download | ppe42-gcc-a7d5a19b2d83f058e0654c1b61b3d08f8a26d077.tar.gz ppe42-gcc-a7d5a19b2d83f058e0654c1b61b3d08f8a26d077.zip | |
2001-07-10 Eric Christopher <echristo@redhat.com>
* config/mips/mips.c (override_options): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43891 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bd62dc46827..2036a803af2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-07-10 Eric Christopher <echristo@redhat.com> + + * config/mips/mips.c (override_options): Fix typo. + 2001-07-09 Stan Shebs <shebs@apple.com> * target.h (struct gcc_target): New fields init_builtins and @@ -51,7 +55,7 @@ (BLOCK_HEAD_TREE): Define. (BLOCK_END_TREE): Define. (struct loops): Rename field 'tree' to 'tree_root'. - * flow.c (entry_exit_blocks): Add initializers for 'head_tree' and + * flow.c (entry_exit_blocks): Add initializers for 'head_tree' and 'end_tree'. (flow_loops_tree_build): Rename reference to field 'tree' to 'tree_root'. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index e07f246b5cb..03356671ddb 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4902,7 +4902,7 @@ override_options () || ! strcmp (mips_tune_string, "DEFAULT")) { if (mips_arch != PROCESSOR_DEFAULT) - mips_tune == mips_arch; + mips_tune = mips_arch; else switch (mips_isa) { |

