Commit 9082f847 by Zack Weinberg Committed by Zack Weinberg

cppinit.c: Add " (cpplib)" to end of string printed by -v / --version.

	* cppinit.c: Add " (cpplib)" to end of string printed by
	-v / --version.

From-SVN: r31645
parent 28353b16
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
......
......@@ -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
......
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