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
2b5987b5
Commit
2b5987b5
authored
12 years ago
by
Matthew Gretton-Dann
Committed by
Jeff Law
12 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc/reload.c (subst_reloads): Fix DEBUG_RELOAD build issue.
From-SVN: r195719
parent
b11976a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/reload.c
+6
-6
No files found.
gcc/ChangeLog
View file @
2b5987b5
2013-02-04 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
* gcc/reload.c (subst_reloads): Fix DEBUG_RELOAD build issue.
2013-02-04 Richard Biener <rguenther@suse.de>
PR tree-optimization/56188
...
...
This diff is collapsed.
Click to expand it.
gcc/reload.c
View file @
2b5987b5
...
...
@@ -6313,14 +6313,14 @@ subst_reloads (rtx insn)
for
(
check_regno
=
0
;
check_regno
<
max_regno
;
check_regno
++
)
{
#define CHECK_MODF(ARRAY) \
gcc_assert (!
reg_equivs
[check_regno].ARRAY \
gcc_assert (!
(*reg_equivs)
[check_regno].ARRAY \
|| !loc_mentioned_in_p (r->where, \
reg_equivs[check_regno).ARRAY)]
(*reg_equivs)[check_regno].ARRAY))
CHECK_MODF
(
equiv_
constant
);
CHECK_MODF
(
equiv_
memory_loc
);
CHECK_MODF
(
equiv_
address
);
CHECK_MODF
(
equiv_
mem
);
CHECK_MODF
(
constant
);
CHECK_MODF
(
memory_loc
);
CHECK_MODF
(
address
);
CHECK_MODF
(
mem
);
#undef CHECK_MODF
}
#endif
/* DEBUG_RELOAD */
...
...
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