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
10176e28
Commit
10176e28
authored
Jan 22, 2004
by
Daniel Jacobowitz
Committed by
Daniel Jacobowitz
Jan 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
(genrtl_for_stmt): Remove emit_nop calls. From-SVN: r76368
parent
9deab0b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/ChangeLog
+5
-0
gcc/c-semantics.c
+0
-4
No files found.
gcc/ChangeLog
View file @
10176e28
2004-01-22 Daniel Jacobowitz <drow@mvista.com>
* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
(genrtl_for_stmt): Remove emit_nop calls.
2004-01-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/13713
...
...
gcc/c-semantics.c
View file @
10176e28
...
...
@@ -430,7 +430,6 @@ genrtl_while_stmt (tree t)
{
tree
cond
=
WHILE_COND
(
t
);
emit_nop
();
emit_line_note
(
input_location
);
expand_start_loop
(
1
);
genrtl_do_pushlevel
();
...
...
@@ -467,7 +466,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
}
else
if
(
integer_nonzerop
(
cond
))
{
emit_nop
();
emit_line_note
(
input_location
);
expand_start_loop
(
1
);
...
...
@@ -478,7 +476,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
}
else
{
emit_nop
();
emit_line_note
(
input_location
);
expand_start_loop_continue_elsewhere
(
1
);
...
...
@@ -542,7 +539,6 @@ genrtl_for_stmt (tree t)
expand_stmt
(
FOR_INIT_STMT
(
t
));
/* Expand the initialization. */
emit_nop
();
emit_line_note
(
input_location
);
if
(
FOR_EXPR
(
t
))
expand_start_loop_continue_elsewhere
(
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