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
d25558be
Commit
d25558be
authored
Mar 11, 2002
by
Andreas Jaeger
Committed by
Andreas Jaeger
Mar 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfg.c (dump_flow_info): Remove unused variable.
From-SVN: r50568
parent
c71f9ae7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+5
-1
gcc/cfg.c
+2
-2
No files found.
gcc/ChangeLog
View file @
d25558be
2002-03-11 Andreas Jaeger <aj@suse.de>
* cfg.c (dump_flow_info): Remove unused variable.
2002-03-11 Hans-Peter Nilsson <hp@bitrange.com>
* config/mmix/mmix.c (mmix_expand_builtin_va_arg): Do all
...
...
@@ -22,7 +26,7 @@
PR preprocessor/5899
* cppinit.c (init_dependency_output): Don't ignore -dM etc.
2002-03-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* mbchar.c (JIS_state_table, JIS_action_table): Const-ify.
...
...
gcc/cfg.c
View file @
d25558be
/* Control flow graph manipulation code for GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001 Free Software Foundation, Inc.
1999, 2000, 2001
, 2002
Free Software Foundation, Inc.
This file is part of GCC.
...
...
@@ -505,7 +505,7 @@ dump_flow_info (file)
fprintf
(
file
,
"
\n
%d basic blocks, %d edges.
\n
"
,
n_basic_blocks
,
n_edges
);
for
(
i
=
0
;
i
<
n_basic_blocks
;
i
++
)
{
basic_block
bb
=
BASIC_BLOCK
(
i
)
,
dom_bb
;
basic_block
bb
=
BASIC_BLOCK
(
i
);
edge
e
;
int
sum
;
gcov_type
lsum
;
...
...
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