diff options
author | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-16 02:23:44 +0000 |
---|---|---|
committer | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-16 02:23:44 +0000 |
commit | 502325edbf50cf753ccd3defe38cfad8f4465d7e (patch) | |
tree | c5d64b68c6b98dba2288a4954b8f7a54c140001e /gcc/f/bld.c | |
parent | 80158a86ecfc35826bb2298fd46fd18cdaaad616 (diff) | |
download | gcc-502325edbf50cf753ccd3defe38cfad8f4465d7e.tar.gz |
Mon Jun 15 22:21:57 1998 Craig Burley <burley@gnu.org>
Cutover to system.h:
* Make-lang.in:
* Makefile.in:
* ansify.c:
* bad.c:
* bld.c:
* com.c:
* com.h:
* expr.c:
* fini.c:
* g77spec.c:
* implic.c:
* intdoc.c:
* intrin.c:
* lex.c:
* lex.h:
* parse.c:
* proj.c:
* proj.h:
* src.c:
* src.h:
* stb.c:
* ste.c:
* target.c:
* top.c:
* system.j: New file.
Use toplev.h where appropriate:
* Make-lang.in:
* Makefile.in:
* bad.c:
* bld.c:
* com.c:
* lex.c:
* ste.c:
* top.c:
* toplev.j: New file.
Conditionalize all dumping/reporting routines so they don't
get built for gcc/egcs:
* bld.c:
* bld.h:
* com.c:
* equiv.c:
* equiv.h:
* sta.c:
* stt.c:
* stt.h:
* symbol.c:
* symbol.h:
Use hconfig.h instead of config.h where appropriate:
* Makefile.in (proj-h.o): Compile with -DUSE_HCONFIG.
* fini.c: Define USE_HCONFIG before including proj.h.
* Makefile.in (deps-kinda): Redirect stderr to stdout,
to eliminate diagnostics vis-a-vis g77spec.c.
* Makefile.in: Regenerate dependencies via deps-kinda.
* lex.c (ffelex_file_fixed, ffelex_file_free): Eliminate
apparently spurious warnings about uninitialized variables
`c', `column', and so on.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20520 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/bld.c')
-rw-r--r-- | gcc/f/bld.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/f/bld.c b/gcc/f/bld.c index 814c18c135f..e8002b8e10f 100644 --- a/gcc/f/bld.c +++ b/gcc/f/bld.c @@ -36,7 +36,6 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Include files. */ #include "proj.h" -#include <ctype.h> #include "bld.h" #include "bit.h" #include "info.h" @@ -446,6 +445,7 @@ ffebld_constant_cmp (ffebldConstant c1, ffebldConstant c2) Displays the constant in summary form. */ +#if FFECOM_targetCURRENT == FFECOM_targetFFE void ffebld_constant_dump (ffebldConstant c) { @@ -863,6 +863,7 @@ ffebld_constant_dump (ffebldConstant c) break; } } +#endif /* ffebld_constant_is_magical -- Determine if integer is "magical" @@ -2002,6 +2003,7 @@ ffebld_constant_new_typeless_val (ffebldConst type, ffetargetTypeless val) supplied, is an ffebit object that is consulted as to whether the constant at a particular offset is valid. */ +#if FFECOM_targetCURRENT == FFECOM_targetFFE void ffebld_constantarray_dump (ffebldConstantArray array, ffeinfoBasictype bt, ffeinfoKindtype kt, ffetargetOffset size, ffebit bits) @@ -2057,6 +2059,7 @@ ffebld_constantarray_dump (ffebldConstantArray array, ffeinfoBasictype bt, fprintf (dmpout, "\\)"); } +#endif /* ffebld_constantarray_get -- Get a value from an array of constants @@ -4409,6 +4412,7 @@ ffebld_constantarray_put (ffebldConstantArray array, ffeinfoBasictype bt, See prototype. */ +#if FFECOM_targetCURRENT == FFECOM_targetFFE void ffebld_constantunion_dump (ffebldConstantUnion u, ffeinfoBasictype bt, ffeinfoKindtype kt) @@ -4737,12 +4741,14 @@ ffebld_constantunion_dump (ffebldConstantUnion u, ffeinfoBasictype bt, break; } } +#endif /* ffebld_dump -- Dump expression tree in concise form ffebld b; ffebld_dump(b); */ +#if FFECOM_targetCURRENT == FFECOM_targetFFE void ffebld_dump (ffebld b) { @@ -4870,12 +4876,14 @@ ffebld_dump (ffebld b) } } } +#endif /* ffebld_dump_prefix -- Dump the prefix for a constant of a given type ffebld_dump_prefix(dmpout,FFEINFO_basictypeINTEGER, FFEINFO_kindtypeINTEGER1); */ +#if FFECOM_targetCURRENT == FFECOM_targetFFE void ffebld_dump_prefix (FILE *out, ffeinfoBasictype bt, ffeinfoKindtype kt) { @@ -5172,6 +5180,7 @@ ffebld_dump_prefix (FILE *out, ffeinfoBasictype bt, ffeinfoKindtype kt) break; } } +#endif /* ffebld_init_0 -- Initialize the module |