aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@gcc.gnu.org>1996-01-24 21:00:03 -0500
committerBrendan Kehoe <brendan@gcc.gnu.org>1996-01-24 21:00:03 -0500
commitaec4ca5ea082732f8d517697dc6eb809cd111a72 (patch)
tree29b5b1b8c59e63d048a4e1497295f228a31667a9
parent7509c7593690d86c4c754551d541f50c5aa3550a (diff)
downloadgcc-aec4ca5ea082732f8d517697dc6eb809cd111a72.zip
gcc-aec4ca5ea082732f8d517697dc6eb809cd111a72.tar.gz
gcc-aec4ca5ea082732f8d517697dc6eb809cd111a72.tar.bz2
alpha.c (alpha_write_verstamp): Only emit MS_STAMP and LS_STAMP, not the extra numbers.
* alpha.c (alpha_write_verstamp): Only emit MS_STAMP and LS_STAMP, not the extra numbers. From-SVN: r11094
-rw-r--r--gcc/config/alpha/alpha.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index ba505dc..b5a42b7 100644
--- a/gcc/config/alpha/alpha.c
+++ b/gcc/config/alpha/alpha.c
@@ -1253,12 +1253,7 @@ alpha_write_verstamp (file)
FILE *file;
{
#ifdef MS_STAMP
- char *p;
-
- fprintf (file, "\t.verstamp %d %d ", MS_STAMP, LS_STAMP);
- for (p = version_string; *p != ' ' && *p != 0; p++)
- fprintf (file, "%c", *p == '.' ? ' ' : *p);
- fprintf (file, "\n");
+ fprintf (file, "\t.verstamp %d %d\n", MS_STAMP, LS_STAMP);
#endif
}