1#include "version.h"
2
3/* This is the trailing component of the string reported as the
4   version number by all components of the compiler.  For an official
5   FSF release, it is empty.  If you distribute a modified version of
6   GCC, please change this string to indicate that.  The suggested
7   format is a leading space, followed by your organization's name
8   in parentheses.  You may also wish to include a number indicating
9   the revision of your modified compiler.  */
10
11#define VERSUFFIX " (NetBSD nb3 20111107)"
12
13/* This is the location of the online document giving instructions for
14   reporting bugs.  If you distribute a modified version of GCC,
15   please change this to refer to a document giving instructions for
16   reporting bugs to you, not us.  (You are of course welcome to
17   forward us bugs reported to you, if you determine that they are
18   not bugs in your modifications.)  */
19
20const char bug_report_url[] = "<URL:http://gnats.NetBSD.org/support/send-pr.html>";
21
22/* The complete version string, assembled from several pieces.
23   BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile.  */
24
25const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
26