From: Richard Kenner Date: Tue, 21 May 1996 11:20:27 +0000 (-0400) Subject: (TARGET_NAME): Define unless already defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e5d0d7d0a94087fb42c3132560a8d24572e694d5;p=gcc.git (TARGET_NAME): Define unless already defined. (TARGET_VERSION): Print TARGET_NAME. From-SVN: r12062 --- diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index 12a241eb023..a0ec89f0e6b 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. */