From e5d0d7d0a94087fb42c3132560a8d24572e694d5 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 21 May 1996 07:20:27 -0400 Subject: (TARGET_NAME): Define unless already defined. (TARGET_VERSION): Print TARGET_NAME. From-SVN: r12062 --- gcc/config/vax/vax.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gcc') 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. */ -- cgit v1.1