diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-04 17:25:01 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-04 17:25:01 -0500 |
commit | 03f8961460fbe1fe78e9778183ef8239a997befe (patch) | |
tree | c61e847e893ee2a9970e59d9b953ac498baa8a89 /gcc | |
parent | 245564053af896c806a357d82023a1f1b706651b (diff) | |
download | gcc-03f8961460fbe1fe78e9778183ef8239a997befe.zip gcc-03f8961460fbe1fe78e9778183ef8239a997befe.tar.gz gcc-03f8961460fbe1fe78e9778183ef8239a997befe.tar.bz2 |
Include tree.h and VMS-specific functions #ifdef VMS_TARGET.
From-SVN: r8387
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/vax/vax.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index f88fb89..6083494 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -28,7 +28,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "insn-flags.h" #include "output.h" #include "insn-attr.h" -#ifdef VMS +#ifdef VMS_TARGET #include "tree.h" #endif @@ -648,6 +648,9 @@ check_float_value (mode, d, overflow) return 0; } +#ifdef VMS_TARGET +/* Additional support code for VMS target. */ + /* Linked list of all externals that are to be emitted when optimizing for the global pointer if they haven't been declared by the end of the program with an appropriate .comm or initialization. */ @@ -741,6 +744,7 @@ vms_flush_pending_externals (file) fprintf (file, ",%d\n", p->size); } } +#endif /* VMS_TARGET */ #ifdef VMS /* Additional support code for VMS host. */ |