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
d599b81f
Commit
d599b81f
authored
Oct 31, 2000
by
Richard Henderson
Committed by
Richard Henderson
Oct 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-semantics.c (genrtl_do_stmt): Special case do/while(0).
From-SVN: r37177
parent
1426f761
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
11 deletions
+24
-11
gcc/ChangeLog
+4
-0
gcc/c-semantics.c
+20
-11
No files found.
gcc/ChangeLog
View file @
d599b81f
2000-10-31 Richard Henderson <rth@redhat.com>
* c-semantics.c (genrtl_do_stmt): Special case do/while(0).
2000-10-31 Nick Clifton <nickc@redhat.com>
* config/arm/unknown-elf.h (UNIQUE_SECTION_P): Do not allow
...
...
gcc/c-semantics.c
View file @
d599b81f
...
...
@@ -480,19 +480,28 @@ void
genrtl_do_stmt
(
t
)
tree
t
;
{
tree
cond
;
emit_nop
();
emit_line_note
(
input_filename
,
lineno
);
expand_start_loop_continue_elsewhere
(
1
);
tree
cond
=
DO_COND
(
t
);
/* Recognize the common special-case of do { ... } while (0) and do
not emit the loop widgetry in this case. In particular this
avoids cluttering the rtl with dummy loop notes, which can affect
alignment of adjacent labels. */
if
(
cond
==
integer_zero_node
)
expand_stmt
(
DO_BODY
(
t
));
else
{
emit_nop
();
emit_line_note
(
input_filename
,
lineno
);
expand_start_loop_continue_elsewhere
(
1
);
expand_stmt
(
DO_BODY
(
t
));
expand_stmt
(
DO_BODY
(
t
));
expand_loop_continue_here
();
cond
=
expand_cond
(
DO_COND
(
t
)
);
emit_line_note
(
input_filename
,
lineno
);
expand_exit_loop_if_false
(
0
,
cond
);
expand_end_loop
();
expand_loop_continue_here
();
cond
=
expand_cond
(
cond
);
emit_line_note
(
input_filename
,
lineno
);
expand_exit_loop_if_false
(
0
,
cond
);
expand_end_loop
(
);
}
}
/* Build the node for a return statement and return it. */
...
...
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