Commit aec4ca5e by Brendan Kehoe

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
parent 7509c759
...@@ -1253,12 +1253,7 @@ alpha_write_verstamp (file) ...@@ -1253,12 +1253,7 @@ alpha_write_verstamp (file)
FILE *file; FILE *file;
{ {
#ifdef MS_STAMP #ifdef MS_STAMP
char *p; fprintf (file, "\t.verstamp %d %d\n", MS_STAMP, LS_STAMP);
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");
#endif #endif
} }
......
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