diff options
author | Martin Liska <mliska@suse.cz> | 2017-03-07 15:13:10 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-03-07 14:13:10 +0000 |
commit | ec38330401cb7579471079424a62c644d41c0dc3 (patch) | |
tree | 86e3d0cba80840565668470e5c2b851454c88662 /gcc/gcov.c | |
parent | a5e9e3e458eed168c8357a5252d4a6437069a7eb (diff) | |
download | gcc-ec38330401cb7579471079424a62c644d41c0dc3.zip gcc-ec38330401cb7579471079424a62c644d41c0dc3.tar.gz gcc-ec38330401cb7579471079424a62c644d41c0dc3.tar.bz2 |
gcov: put comment to correct location.
2017-03-07 Martin Liska <mliska@suse.cz>
* gcov.c (process_args): Put comment to correct location.
From-SVN: r245952
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -776,11 +776,11 @@ process_args (int argc, char **argv) case 'd': flag_display_progress = 1; break; - case 'v': - print_version (); case 'x': flag_hash_filenames = 1; break; + case 'v': + print_version (); /* print_version will exit. */ default: print_usage (true); |