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
1dd5907e
Commit
1dd5907e
authored
Aug 29, 2012
by
Steven Bosscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfg.c (dump_bb_info): Print a newline if there were no edges to dump.
From-SVN: r190786
parent
80a676b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/cfg.c
+4
-0
No files found.
gcc/ChangeLog
View file @
1dd5907e
2012-08-29 Steven Bosscher <steven@gcc.gnu.org>
* cfg.c (dump_bb_info): Print a newline if there were no edges to dump.
2012-08-29 Chung-Lin Tang <cltang@codesourcery.com>
Revert:
...
...
gcc/cfg.c
View file @
1dd5907e
...
...
@@ -764,6 +764,8 @@ dump_bb_info (FILE *outf, basic_block bb, int indent, int flags,
dump_edge_info
(
outf
,
e
,
flags
,
0
);
fputc
(
'\n'
,
outf
);
}
if
(
first
)
fputc
(
'\n'
,
outf
);
}
if
(
do_footer
)
...
...
@@ -784,6 +786,8 @@ dump_bb_info (FILE *outf, basic_block bb, int indent, int flags,
dump_edge_info
(
outf
,
e
,
flags
,
1
);
fputc
(
'\n'
,
outf
);
}
if
(
first
)
fputc
(
'\n'
,
outf
);
}
}
...
...
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