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
cbafacd1
Commit
cbafacd1
authored
23 years ago
by
Richard Kenner
Committed by
Richard Kenner
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reg-stack.c (subst_stack_regs): Properly check for deleted insn.
From-SVN: r49024
parent
5904dc87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/reg-stack.c
+1
-1
No files found.
gcc/ChangeLog
View file @
cbafacd1
...
...
@@ -7,6 +7,8 @@
Sun Jan 20 18:40:14 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* reg-stack.c (subst_stack_regs): Properly check for deleted insn.
* dwarf2out.c (loc_descriptor_from_tree): Add TRUTH_*_EXPR cases.
(gen_struct_or_union_type_die): Don't SIGSEGV if no TYPE_STUB_DECL
in incomplete case.
...
...
This diff is collapsed.
Click to expand it.
gcc/reg-stack.c
View file @
cbafacd1
...
...
@@ -2215,7 +2215,7 @@ subst_stack_regs (insn, regstack)
/* subst_stack_regs_pat may have deleted a no-op insn. If so, any
REG_UNUSED will already have been dealt with, so just return. */
if
(
GET_CODE
(
insn
)
==
NOTE
)
if
(
GET_CODE
(
insn
)
==
NOTE
||
INSN_DELETED_P
(
insn
)
)
return
;
/* If there is a REG_UNUSED note on a stack register on this insn,
...
...
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