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
40c3a857
Commit
40c3a857
authored
Mar 29, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Mar 29, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* collect2.c (is_in_list): Wrap inside COLLECT_EXPORT_LIST ifdef.
From-SVN: r18892
parent
c80150b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+2
-0
gcc/collect2.c
+3
-1
No files found.
gcc/ChangeLog
View file @
40c3a857
Sun Mar 29 12:45:23 1998 Jeffrey A Law (law@cygnus.com)
* collect2.c (is_in_list): Wrap inside COLLECT_EXPORT_LIST ifdef.
* local-alloc.c (reg_classes_overlap_p): Delete dead function.
* tree.h (lang_print_xnode): Provide prototype.
...
...
gcc/collect2.c
View file @
40c3a857
...
...
@@ -293,7 +293,6 @@ static void add_to_list PROTO((struct head *, char *));
static
void
write_list
PROTO
((
FILE
*
,
char
*
,
struct
id
*
));
static
void
dump_list
PROTO
((
FILE
*
,
char
*
,
struct
id
*
));
static
void
dump_prefix_list
PROTO
((
FILE
*
,
char
*
,
struct
prefix_list
*
));
static
int
is_in_list
PROTO
((
char
*
,
struct
id
*
));
static
void
write_list_with_asm
PROTO
((
FILE
*
,
char
*
,
struct
id
*
));
static
void
write_c_file
PROTO
((
FILE
*
,
char
*
));
static
void
scan_prog_file
PROTO
((
char
*
,
enum
pass
));
...
...
@@ -301,6 +300,7 @@ static void scan_prog_file PROTO((char *, enum pass));
static
void
scan_libraries
PROTO
((
char
*
));
#endif
#ifdef COLLECT_EXPORT_LIST
static
int
is_in_list
PROTO
((
char
*
,
struct
id
*
));
static
void
write_export_file
PROTO
((
FILE
*
));
static
void
write_import_file
PROTO
((
FILE
*
));
static
char
*
resolve_lib_name
PROTO
((
char
*
));
...
...
@@ -1871,6 +1871,7 @@ write_list (stream, prefix, list)
}
}
#ifdef COLLECT_EXPORT_LIST
/* This function is really used only on AIX, but may be useful. */
static
int
is_in_list
(
prefix
,
list
)
...
...
@@ -1884,6 +1885,7 @@ is_in_list (prefix, list)
}
return
0
;
}
#endif
/* Added for debugging purpose. */
static
void
...
...
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