diff options
author | Craig Burley <burley@gnu.org> | 1998-06-15 22:23:44 -0400 |
---|---|---|
committer | Dave Love <fx@gcc.gnu.org> | 1998-06-16 02:23:44 +0000 |
commit | 8b45da67d0eaa8d7fec5913d9439d88865edfc55 (patch) | |
tree | c5d64b68c6b98dba2288a4954b8f7a54c140001e /gcc/f/intdoc.c | |
parent | 92a3a8d00dbfbf75862836a1b00db408f1ed633b (diff) | |
download | gcc-8b45da67d0eaa8d7fec5913d9439d88865edfc55.zip gcc-8b45da67d0eaa8d7fec5913d9439d88865edfc55.tar.gz gcc-8b45da67d0eaa8d7fec5913d9439d88865edfc55.tar.bz2 |
Cutover to system.h:
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.
From-SVN: r20520
Diffstat (limited to 'gcc/f/intdoc.c')
-rw-r--r-- | gcc/f/intdoc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/f/intdoc.c b/gcc/f/intdoc.c index 8569ed7..648b75a 100644 --- a/gcc/f/intdoc.c +++ b/gcc/f/intdoc.c @@ -20,16 +20,12 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* From f/proj.h, which uses #error -- not all C compilers - support that, and we want _this_ program to be compilable + support that, and we want *this* program to be compilable by pretty much any C compiler. */ - -#include "assert.j" /* Use gcc's assert.h. */ -#include <stdio.h> +#include "hconfig.j" +#include "system.j" +#include "assert.j" #include <stddef.h> -#include <stdlib.h> -#include <string.h> -#define FFEINTRIN_DOC 1 -#include "intrin.h" typedef enum { @@ -44,6 +40,10 @@ typedef enum #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0])) +/* Pull in the intrinsics info, but only the doc parts. */ +#define FFEINTRIN_DOC 1 +#include "intrin.h" + char *family_name (ffeintrinFamily family); static void dumpif (ffeintrinFamily fam); static void dumpendif (void); |