diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-22 08:07:47 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-22 08:07:47 +0000 |
commit | f174c04f7514790255ede21096e4bd4e60f97008 (patch) | |
tree | 09ce577aa686cd06f16f0241cd3f8364eb06ae13 /gcc/gcov-iov.c | |
parent | 17cb58eb2d5aa3ea55e859ed33b37af2a354b9b5 (diff) | |
download | gcc-f174c04f7514790255ede21096e4bd4e60f97008.tar.gz |
2012-06-22 Richard Guenther <rguenther@suse.de>
PR gcov-profile/53744
* gcov-iov.c (main): Treat "" and "prerelease" the same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188876 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-iov.c')
-rw-r--r-- | gcc/gcov-iov.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/gcov-iov.c b/gcc/gcov-iov.c index 9a73cd5b2b2..bd062e7b11c 100644 --- a/gcc/gcov-iov.c +++ b/gcc/gcov-iov.c @@ -48,8 +48,14 @@ main (int argc, char **argv) if (*ptr == '.') minor = strtoul (ptr + 1, 0, 10); + /* For releases the development phase is an empty string, for + prerelease versions on a release branch it is "prerelease". + Consider both equal as patch-level releases do not change + the GCOV version either. + On the trunk the development phase is "experimental". */ phase = argv[2][0]; - if (phase == '\0') + if (phase == '\0' + || strcmp (argv[2], "prerelease") == 0) phase = '*'; v[0] = (major < 10 ? '0' : 'A' - 10) + major; |