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
d1ee23e5
Commit
d1ee23e5
authored
24 years ago
by
Richard Henderson
Committed by
Richard Henderson
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stmt.c (expand_end_bindings): Fix thinko last change.
From-SVN: r34170
parent
ce152ef8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/stmt.c
+1
-1
No files found.
gcc/ChangeLog
View file @
d1ee23e5
2000
-
05
-
25
Richard
Henderson
<
rth
@cygnus
.
com
>
*
stmt
.
c
(
expand_end_bindings
)
:
Fix
thinko
last
change
.
2000
-
05
-
25
Andrew
MacLeod
<
amacleod
@cygnus
.
com
>
Andrew
Haley
<
aph
@cygnus
.
com
>
This diff is collapsed.
Click to expand it.
gcc/stmt.c
View file @
d1ee23e5
...
...
@@ -3688,7 +3688,7 @@ expand_end_bindings (vars, mark_ends, dont_jump_in)
insn
=
get_last_insn
();
if
(
GET_CODE
(
insn
)
==
NOTE
)
insn
=
prev_nonnote_insn
(
insn
);
reachable
=
GET_CODE
(
insn
)
!=
BARRIER
;
reachable
=
(
!
insn
||
GET_CODE
(
insn
)
!=
BARRIER
)
;
/* Do the cleanups. */
expand_cleanups
(
thisblock
->
data
.
block
.
cleanups
,
NULL_TREE
,
0
,
reachable
);
...
...
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