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
1d766db0
Commit
1d766db0
authored
Oct 31, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Oct 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix crashes in split_all_insns
From-SVN: r37155
parent
332316cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
14 deletions
+21
-14
gcc/ChangeLog
+5
-0
gcc/recog.c
+16
-14
No files found.
gcc/ChangeLog
View file @
1d766db0
...
...
@@ -17,6 +17,11 @@
Renumber case labels to match the _mm_prefetch constants defined in
xmmintrin.h.
* recog.c (split_all_insns): Don't try to call cleanup_subreg_operands
if the splitter didn't emit new insns.
Make sure we call cleanup_subreg_operands even when splitting the last
insn in a basic block.
2000-10-30 Neil Booth <neilb@earthling.net>
* cppfiles.c (stack_include_file): Check for stacked contexts
...
...
gcc/recog.c
View file @
1d766db0
...
...
@@ -2747,29 +2747,31 @@ split_all_insns (upd_life)
changed
=
1
;
/* try_split returns the NOTE that INSN became. */
first
=
NEXT_INSN
(
first
);
PUT_CODE
(
insn
,
NOTE
);
NOTE_SOURCE_FILE
(
insn
)
=
0
;
NOTE_LINE_NUMBER
(
insn
)
=
NOTE_INSN_DELETED
;
/* ??? Coddle to md files that generate subregs in post-
reload splitters instead of computing the proper
hard register. */
if
(
reload_completed
&&
first
!=
last
)
{
first
=
NEXT_INSN
(
first
);
while
(
1
)
{
if
(
INSN_P
(
first
))
cleanup_subreg_operands
(
first
);
if
(
first
==
last
)
break
;
first
=
NEXT_INSN
(
first
);
}
}
if
(
insn
==
bb
->
end
)
{
bb
->
end
=
last
;
break
;
}
/* ??? Coddle to md files that generate subregs in post-
reload splitters instead of computing the proper
hard register. */
if
(
reload_completed
)
while
(
1
)
{
if
(
INSN_P
(
first
))
cleanup_subreg_operands
(
first
);
if
(
first
==
last
)
break
;
first
=
NEXT_INSN
(
first
);
}
}
}
...
...
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