diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-21 11:20:27 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-21 11:20:27 +0000 |
commit | 2dc36dd63325379f9fed96403c3f0df067c95e01 (patch) | |
tree | 9e74127a8fc611aa3b6d54e208f261c57113643d | |
parent | 893047e321c57b90e837ca64ee44971a6236ff2f (diff) | |
download | gcc-2dc36dd63325379f9fed96403c3f0df067c95e01.tar.gz |
(TARGET_NAME): Define unless already defined.
(TARGET_VERSION): Print TARGET_NAME.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12062 138bc75d-0d04-0410-961f-82ee72b054a4
-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 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. */ |