Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f8d97cf4
Commit
f8d97cf4
authored
Aug 20, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put include of stdio.h after GCC header files (for i860-stardent-sysv4).
From-SVN: r1905
parent
99effc21
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
8 deletions
+7
-8
gcc/combine.c
+1
-2
gcc/emit-rtl.c
+1
-1
gcc/final.c
+1
-1
gcc/gcc.c
+1
-1
gcc/genattrtab.c
+1
-1
gcc/mips-tfile.c
+1
-1
gcc/tree.c
+1
-1
No files found.
gcc/combine.c
View file @
f8d97cf4
...
@@ -73,8 +73,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -73,8 +73,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
also use the condition code; but in practice such insns would not
also use the condition code; but in practice such insns would not
combine anyway. */
combine anyway. */
#include <stdio.h>
#include "config.h"
#include "config.h"
#include "gvarargs.h"
#include "gvarargs.h"
#include "rtl.h"
#include "rtl.h"
...
@@ -88,6 +86,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -88,6 +86,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "insn-attr.h"
#include "insn-attr.h"
#include "recog.h"
#include "recog.h"
#include "real.h"
#include "real.h"
#include <stdio.h>
/* It is not safe to use ordinary gen_lowpart in combine.
/* It is not safe to use ordinary gen_lowpart in combine.
Use gen_lowpart_for_combine instead. See comments there. */
Use gen_lowpart_for_combine instead. See comments there. */
...
...
gcc/emit-rtl.c
View file @
f8d97cf4
...
@@ -34,7 +34,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -34,7 +34,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
is the kind of rtx's they make and what arguments they use. */
is the kind of rtx's they make and what arguments they use. */
#include "config.h"
#include "config.h"
#include <stdio.h>
#include "gvarargs.h"
#include "gvarargs.h"
#include "rtl.h"
#include "rtl.h"
#include "flags.h"
#include "flags.h"
...
@@ -43,6 +42,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -43,6 +42,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "regs.h"
#include "regs.h"
#include "insn-config.h"
#include "insn-config.h"
#include "real.h"
#include "real.h"
#include <stdio.h>
/* This is reset to LAST_VIRTUAL_REGISTER + 1 at the start of each function.
/* This is reset to LAST_VIRTUAL_REGISTER + 1 at the start of each function.
After rtl generation, it is 1 plus the largest register number used. */
After rtl generation, it is 1 plus the largest register number used. */
...
...
gcc/final.c
View file @
f8d97cf4
...
@@ -43,7 +43,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -43,7 +43,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
directly as assembler code by the macros FUNCTION_PROLOGUE and
directly as assembler code by the macros FUNCTION_PROLOGUE and
FUNCTION_EPILOGUE. Those instructions never exist as rtl. */
FUNCTION_EPILOGUE. Those instructions never exist as rtl. */
#include <stdio.h>
#include "config.h"
#include "config.h"
#include "gvarargs.h"
#include "gvarargs.h"
#include "rtl.h"
#include "rtl.h"
...
@@ -59,6 +58,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -59,6 +58,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "output.h"
#include "output.h"
#include "hard-reg-set.h"
#include "hard-reg-set.h"
#include "defaults.h"
#include "defaults.h"
#include <stdio.h>
/* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
/* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
...
...
gcc/gcc.c
View file @
f8d97cf4
...
@@ -30,7 +30,6 @@ CC recognizes how to compile each input file by suffixes in the file names.
...
@@ -30,7 +30,6 @@ CC recognizes how to compile each input file by suffixes in the file names.
Once it knows which kind of compilation to perform, the procedure for
Once it knows which kind of compilation to perform, the procedure for
compilation is specified by a string called a "spec". */
compilation is specified by a string called a "spec". */
#include <stdio.h>
#include <sys/types.h>
#include <sys/types.h>
#include <ctype.h>
#include <ctype.h>
#include <signal.h>
#include <signal.h>
...
@@ -40,6 +39,7 @@ compilation is specified by a string called a "spec". */
...
@@ -40,6 +39,7 @@ compilation is specified by a string called a "spec". */
#include "config.h"
#include "config.h"
#include "obstack.h"
#include "obstack.h"
#include "gvarargs.h"
#include "gvarargs.h"
#include <stdio.h>
#ifndef R_OK
#ifndef R_OK
#define R_OK 4
#define R_OK 4
...
...
gcc/genattrtab.c
View file @
f8d97cf4
...
@@ -94,12 +94,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -94,12 +94,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
EQ_ATTR rtx is true if !volatil and false if volatil. */
EQ_ATTR rtx is true if !volatil and false if volatil. */
#include <stdio.h>
#include "gvarargs.h"
#include "gvarargs.h"
#include "config.h"
#include "config.h"
#include "rtl.h"
#include "rtl.h"
#include "obstack.h"
#include "obstack.h"
#include "insn-config.h"
/* For REGISTER_CONSTRAINTS */
#include "insn-config.h"
/* For REGISTER_CONSTRAINTS */
#include <stdio.h>
static
struct
obstack
obstack
,
obstack1
,
obstack2
;
static
struct
obstack
obstack
,
obstack1
,
obstack2
;
struct
obstack
*
rtl_obstack
=
&
obstack
;
struct
obstack
*
rtl_obstack
=
&
obstack
;
...
...
gcc/mips-tfile.c
View file @
f8d97cf4
...
@@ -598,9 +598,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -598,9 +598,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
*/
*/
#include <stdio.h>
#include "gvarargs.h"
#include "gvarargs.h"
#include "config.h"
#include "config.h"
#include <stdio.h>
#ifndef __SABER__
#ifndef __SABER__
#define saber_stop()
#define saber_stop()
...
...
gcc/tree.c
View file @
f8d97cf4
...
@@ -33,12 +33,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
...
@@ -33,12 +33,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
by all passes of the compiler. */
by all passes of the compiler. */
#include "config.h"
#include "config.h"
#include <stdio.h>
#include "flags.h"
#include "flags.h"
#include "tree.h"
#include "tree.h"
#include "function.h"
#include "function.h"
#include "obstack.h"
#include "obstack.h"
#include "gvarargs.h"
#include "gvarargs.h"
#include <stdio.h>
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
#define obstack_chunk_free free
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment