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
bbfd16d4
Commit
bbfd16d4
authored
Apr 13, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(xmalloc): Don't use prototype for now.
From-SVN: r4142
parent
9520cb3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/rtl.h
+3
-2
gcc/tree.h
+3
-2
No files found.
gcc/rtl.h
View file @
bbfd16d4
...
@@ -644,12 +644,13 @@ extern rtx read_rtx ();
...
@@ -644,12 +644,13 @@ extern rtx read_rtx ();
/* At present, don't prototype xrealloc, since all of the callers don't
/* At present, don't prototype xrealloc, since all of the callers don't
cast their pointers to char *, and all of the xrealloc's don't use
cast their pointers to char *, and all of the xrealloc's don't use
void * yet. */
void * yet. */
extern char *xrealloc PROTO((void *, unsigned));
extern char *xmalloc PROTO((size_t));
extern char *xrealloc PROTO((void *, size_t));
#else
#else
extern
char
*
xmalloc
();
extern
char
*
xrealloc
();
extern
char
*
xrealloc
();
#endif
#endif
extern
char
*
xmalloc
PROTO
((
unsigned
));
extern
char
*
oballoc
PROTO
((
int
));
extern
char
*
oballoc
PROTO
((
int
));
extern
char
*
permalloc
PROTO
((
int
));
extern
char
*
permalloc
PROTO
((
int
));
extern
void
free
PROTO
((
void
*
));
extern
void
free
PROTO
((
void
*
));
...
...
gcc/tree.h
View file @
bbfd16d4
...
@@ -997,15 +997,16 @@ union tree_node
...
@@ -997,15 +997,16 @@ union tree_node
/* At present, don't prototype xrealloc, since all of the callers don't
/* At present, don't prototype xrealloc, since all of the callers don't
cast their pointers to char *, and all of the xrealloc's don't use
cast their pointers to char *, and all of the xrealloc's don't use
void * yet. */
void * yet. */
extern char *xrealloc PROTO((void *, unsigned));
extern char *xmalloc PROTO((size_t));
extern char *xrealloc PROTO((void *, size_t));
#else
#else
extern
char
*
xmalloc
();
extern
char
*
xrealloc
();
extern
char
*
xrealloc
();
#endif
#endif
extern
char
*
oballoc
PROTO
((
int
));
extern
char
*
oballoc
PROTO
((
int
));
extern
char
*
permalloc
PROTO
((
int
));
extern
char
*
permalloc
PROTO
((
int
));
extern
char
*
savealloc
PROTO
((
int
));
extern
char
*
savealloc
PROTO
((
int
));
extern
char
*
xmalloc
PROTO
((
unsigned
));
extern
void
free
PROTO
((
void
*
));
extern
void
free
PROTO
((
void
*
));
/* Lowest level primitive for allocating a node.
/* Lowest level primitive for allocating a node.
...
...
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