diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-05-21 07:20:27 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-05-21 07:20:27 -0400 |
commit | e5d0d7d0a94087fb42c3132560a8d24572e694d5 (patch) | |
tree | 9e74127a8fc611aa3b6d54e208f261c57113643d /gcc/config/vax | |
parent | adade86813e4837f5b4895f8b15cf71a4b75155b (diff) | |
download | gcc-e5d0d7d0a94087fb42c3132560a8d24572e694d5.zip gcc-e5d0d7d0a94087fb42c3132560a8d24572e694d5.tar.gz gcc-e5d0d7d0a94087fb42c3132560a8d24572e694d5.tar.bz2 |
(TARGET_NAME): Define unless already defined.
(TARGET_VERSION): Print TARGET_NAME.
From-SVN: r12062
Diffstat (limited to 'gcc/config/vax')
-rw-r--r-- | gcc/config/vax/vax.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index 12a241e..a0ec89f 100644 --- a/gcc/config/vax/vax.h +++ b/gcc/config/vax/vax.h @@ -39,7 +39,10 @@ Boston, MA 02111-1307, USA. */ /* Print subsidiary information on the compiler version in use. */ -#define TARGET_VERSION fprintf (stderr, " (vax)"); +#ifndef TARGET_NAME /* A more specific value might be supplied via -D. */ +#define TARGET_NAME "vax" +#endif +#define TARGET_VERSION fprintf (stderr, " (%s)", TARGET_NAME) /* Run-time compilation parameters selecting different hardware subsets. */ |