aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/cppinit.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fca0d65..de1108f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-27 Zack Weinberg <zack@wolery.cumb.org>
+
+ * cppinit.c: Add " (cpplib)" to end of string printed by
+ -v / --version.
+
2000-01-27 Richard Henderson <rth@cygnus.com>
* alpha.c (alpha_emit_conditional_move): Use VOIDmode when
diff --git a/gcc/cppinit.c b/gcc/cppinit.c
index b854a30..6cb8e5c 100644
--- a/gcc/cppinit.c
+++ b/gcc/cppinit.c
@@ -1500,12 +1500,12 @@ cpp_handle_option (pfile, argc, argv)
if (!strcmp (argv[i], "--help"))
print_help ();
else if (!strcmp (argv[i], "--version"))
- cpp_notice ("GNU CPP version %s\n", version_string);
+ cpp_notice ("GNU CPP version %s (cpplib)\n", version_string);
exit (0); /* XXX */
break;
case 'v':
- cpp_notice ("GNU CPP version %s", version_string);
+ cpp_notice ("GNU CPP version %s (cpplib)", version_string);
#ifdef TARGET_VERSION
TARGET_VERSION;
#endif