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
2e99323f
Commit
2e99323f
authored
Jan 16, 2002
by
Nick Clifton
Committed by
Nick Clifton
Jan 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add REG_MAYBE_DEAD note to frame pointer initialisation instruction.
From-SVN: r48912
parent
e1886ae0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
gcc/ChangeLog
+7
-0
gcc/config/arm/arm.c
+4
-1
No files found.
gcc/ChangeLog
View file @
2e99323f
2002-01-16 Nick Clifton <nickc@cambridge.redhat.com>
* config/arm/arm.c (arm_expand_prologue): Add REG_MAYBE_DEAD note
to frame pointer initialisation instruction.
(thumb_expand_prologue): Add REG_MAYBE_DEAD note to frame pointer
initialisation instruction.
2002-01-16 Jakub Jelinek <jakub@redhat.com>
PR target/5357:
...
...
gcc/config/arm/arm.c
View file @
2e99323f
...
...
@@ -8344,7 +8344,10 @@ arm_expand_prologue ()
}
insn
=
gen_rtx_SET
(
SImode
,
ip_rtx
,
insn
);
(
void
)
emit_insn
(
insn
);
insn
=
emit_insn
(
insn
);
/* Add a reg note to stop propogate_one_insn() from barfing. */
REG_NOTES
(
insn
)
=
gen_rtx_EXPR_LIST
(
REG_MAYBE_DEAD
,
ip_rtx
,
REG_NOTES
(
insn
));
}
}
...
...
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