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
ec045ab4
Commit
ec045ab4
authored
Aug 01, 1997
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
From-SVN: r14600
parent
58a1b05a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
44 deletions
+0
-44
gcc/toplev.c
+0
-44
No files found.
gcc/toplev.c
View file @
ec045ab4
...
...
@@ -126,11 +126,6 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
#define PREFERRED_DEBUGGING_TYPE NO_DEBUG
#endif
#ifdef DWARF2_DEBUGGING_INFO
#undef PREFERRED_DEBUGGING_TYPE
#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
#endif
extern
int
rtx_equal_function_value_matters
;
#if ! (defined (VMS) || defined (OS2))
...
...
@@ -244,7 +239,6 @@ extern int target_flags;
int
rtl_dump
=
0
;
int
rtl_dump_and_exit
=
0
;
int
jump_opt_dump
=
0
;
int
addressof_dump
=
0
;
int
cse_dump
=
0
;
int
loop_dump
=
0
;
int
cse2_dump
=
0
;
...
...
@@ -858,7 +852,6 @@ FILE *asm_out_file;
FILE
*
aux_info_file
;
FILE
*
rtl_dump_file
;
FILE
*
jump_opt_dump_file
;
FILE
*
addressof_dump_file
;
FILE
*
cse_dump_file
;
FILE
*
loop_dump_file
;
FILE
*
cse2_dump_file
;
...
...
@@ -1023,8 +1016,6 @@ fatal_insn (message, insn)
fflush
(
rtl_dump_file
);
if
(
jump_opt_dump_file
)
fflush
(
jump_opt_dump_file
);
if
(
addressof_dump_file
)
fflush
(
addressof_dump_file
);
if
(
cse_dump_file
)
fflush
(
cse_dump_file
);
if
(
loop_dump_file
)
...
...
@@ -2187,10 +2178,6 @@ compile_file (name)
if
(
jump_opt_dump
)
jump_opt_dump_file
=
open_dump_file
(
dump_base_name
,
".jump"
);
/* If addressof dump desired, open the output file. */
if
(
addressof_dump
)
addressof_dump_file
=
open_dump_file
(
dump_base_name
,
".addressof"
);
/* If cse dump desired, open the output file. */
if
(
cse_dump
)
cse_dump_file
=
open_dump_file
(
dump_base_name
,
".cse"
);
...
...
@@ -2678,9 +2665,6 @@ compile_file (name)
if
(
jump_opt_dump
)
fclose
(
jump_opt_dump_file
);
if
(
addressof_dump
)
fclose
(
addressof_dump_file
);
if
(
cse_dump
)
fclose
(
cse_dump_file
);
...
...
@@ -2944,18 +2928,6 @@ rest_of_compilation (decl)
functions containing nested functions since the nested function
data is in our non-saved obstack. */
/* If this is a nested inline, remove ADDRESSOF now so we can
finish compiling ourselves. Otherwise, wait until EOF.
We have to do this because the purge_addressof transformation
changes the DECL_RTL for many variables, which confuses integrate. */
if
(
DECL_INLINE
(
decl
))
{
if
(
decl_function_context
(
decl
))
purge_addressof
(
insns
);
else
DECL_DEFER_OUTPUT
(
decl
)
=
1
;
}
if
(
!
current_function_contains_functions
&&
(
DECL_DEFER_OUTPUT
(
decl
)
||
(
DECL_INLINE
(
decl
)
...
...
@@ -3148,18 +3120,6 @@ rest_of_compilation (decl)
fflush
(
cse_dump_file
);
});
purge_addressof
(
insns
);
reg_scan
(
insns
,
max_reg_num
(),
1
);
if
(
addressof_dump
)
TIMEVAR
(
dump_time
,
{
fprintf
(
addressof_dump_file
,
"
\n
;; Function %s
\n\n
"
,
(
*
decl_printable_name
)
(
decl
,
2
));
print_rtl
(
addressof_dump_file
,
insns
);
fflush
(
addressof_dump_file
);
});
if
(
loop_dump
)
TIMEVAR
(
dump_time
,
{
...
...
@@ -3773,7 +3733,6 @@ main (argc, argv, envp)
flow_dump
=
1
;
global_reg_dump
=
1
;
jump_opt_dump
=
1
;
addressof_dump
=
1
;
jump2_opt_dump
=
1
;
local_reg_dump
=
1
;
loop_dump
=
1
;
...
...
@@ -3804,9 +3763,6 @@ main (argc, argv, envp)
case
'j'
:
jump_opt_dump
=
1
;
break
;
case
'D'
:
addressof_dump
=
1
;
break
;
case
'J'
:
jump2_opt_dump
=
1
;
break
;
...
...
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