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
d27bab4c
Commit
d27bab4c
authored
22 years ago
by
Richard Henderson
Committed by
Richard Henderson
22 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* caller-save.c (init_caller_save): Clear INSN_CODE each iteration.
From-SVN: r54527
parent
bc2a8f08
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+4
-0
gcc/caller-save.c
+5
-0
No files found.
gcc/ChangeLog
View file @
d27bab4c
2002-06-11 Richard Henderson <rth@redhat.com>
* caller-save.c (init_caller_save): Clear INSN_CODE each iteration.
2002-06-11 Richard Henderson <rth@redhat.com>
* defaults.h (EH_FRAME_SECTION_NAME): Don't define if
DWARF2_UNWIND_INFO is false.
...
...
This diff is collapsed.
Click to expand it.
gcc/caller-save.c
View file @
d27bab4c
...
...
@@ -208,6 +208,10 @@ init_caller_save ()
PUT_MODE
(
test_reg
,
mode
);
PUT_MODE
(
test_mem
,
mode
);
/* Force re-recognition of the modified insns. */
INSN_CODE
(
saveinsn
)
=
-
1
;
INSN_CODE
(
restinsn
)
=
-
1
;
reg_save_code
[
i
][
mode
]
=
recog_memoized
(
saveinsn
);
reg_restore_code
[
i
][
mode
]
=
recog_memoized
(
restinsn
);
...
...
@@ -234,6 +238,7 @@ init_caller_save ()
reg_save_code
[
i
][
mode
]
=
-
1
;
reg_restore_code
[
i
][
mode
]
=
-
1
;
}
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
for
(
j
=
1
;
j
<=
MOVE_MAX_WORDS
;
j
++
)
if
(
reg_save_code
[
i
][
regno_save_mode
[
i
][
j
]]
==
-
1
)
...
...
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