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
ac266247
Commit
ac266247
authored
Mar 06, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r404
parent
3e7b5313
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
gcc/toplev.c
+7
-3
No files found.
gcc/toplev.c
View file @
ac266247
...
@@ -1656,12 +1656,15 @@ compile_file (name)
...
@@ -1656,12 +1656,15 @@ compile_file (name)
&&
!
TREE_EXTERNAL
(
decl
))
&&
!
TREE_EXTERNAL
(
decl
))
output_inline_function
(
decl
);
output_inline_function
(
decl
);
/* Warn about any function or variable
/* Warn about any function
declared static but not defined. */
declared static but not defined.
We don't warn about variables,
because many programs have static variables
that exist only to get some text into the object file. */
if
((
warn_unused
if
((
warn_unused
||
TREE_USED
(
decl
)
||
TREE_USED
(
decl
)
||
(
DECL_NAME
(
decl
)
&&
TREE_USED
(
DECL_NAME
(
decl
))))
||
(
DECL_NAME
(
decl
)
&&
TREE_USED
(
DECL_NAME
(
decl
))))
/* && TREE_CODE (decl) == FUNCTION_DECL */
&&
TREE_CODE
(
decl
)
==
FUNCTION_DECL
&&
DECL_INITIAL
(
decl
)
==
0
&&
DECL_INITIAL
(
decl
)
==
0
&&
TREE_EXTERNAL
(
decl
)
&&
TREE_EXTERNAL
(
decl
)
&&
!
TREE_PUBLIC
(
decl
))
&&
!
TREE_PUBLIC
(
decl
))
...
@@ -2559,6 +2562,7 @@ main (argc, argv, envp)
...
@@ -2559,6 +2562,7 @@ main (argc, argv, envp)
flag_expensive_optimizations
=
1
;
flag_expensive_optimizations
=
1
;
flag_strength_reduce
=
1
;
flag_strength_reduce
=
1
;
flag_rerun_cse_after_loop
=
1
;
flag_rerun_cse_after_loop
=
1
;
flag_caller_saves
=
1
;
#ifdef INSN_SCHEDULING
#ifdef INSN_SCHEDULING
flag_schedule_insns
=
1
;
flag_schedule_insns
=
1
;
flag_schedule_insns_after_reload
=
1
;
flag_schedule_insns_after_reload
=
1
;
...
...
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