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
c3a2235b
Commit
c3a2235b
authored
31 years ago
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_exit_loop_if_false, bc_expand_start_cond):
Use xjumpifnot, not jumpifnot. From-SVN: r5483
parent
04b2d6f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/stmt.c
+3
-2
No files found.
gcc/stmt.c
View file @
c3a2235b
...
...
@@ -2253,7 +2253,7 @@ bc_expand_start_cond (cond, exitflag)
thiscond
->
data
.
case_stmt
.
nominal_type
=
cond
;
bc_expand_expr
(
cond
);
bc_emit_bytecode
(
jumpifnot
);
bc_emit_bytecode
(
x
jumpifnot
);
bc_emit_bytecode_labelref
(
BYTECODE_BC_LABEL
(
thiscond
->
exit_label
));
#ifdef DEBUG_PRINT_CODE
...
...
@@ -2547,7 +2547,8 @@ expand_exit_loop_if_false (whichloop, cond)
if
(
output_bytecode
)
{
bc_expand_expr
(
cond
);
bc_expand_goto_internal
(
jumpifnot
,
BYTECODE_BC_LABEL
(
whichloop
->
exit_label
),
bc_expand_goto_internal
(
xjumpifnot
,
BYTECODE_BC_LABEL
(
whichloop
->
exit_label
),
NULL_RTX
);
}
else
...
...
This diff is collapsed.
Click to expand 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