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
a3e19be6
Commit
a3e19be6
authored
May 09, 2008
by
Maxim Kuvyrkov
Committed by
Maxim Kuvyrkov
May 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rtl-factoring.c (collect_pattern_seqs): Fix typo.
From-SVN: r135115
parent
1043771b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+4
-0
gcc/rtl-factoring.c
+5
-5
No files found.
gcc/ChangeLog
View file @
a3e19be6
2008-05-09 Maxim Kuvyrkov <maxim@codesourcery.com>
* rtl-factoring.c (collect_pattern_seqs): Fix typo.
2008-05-09 Tomas Bily <tbily@suse.cz>
* config/pa/pa.c (reloc_needed): Use CASE_CONVERT.
...
...
gcc/rtl-factoring.c
View file @
a3e19be6
...
...
@@ -444,7 +444,7 @@ collect_pattern_seqs (void)
htab_iterator
hti0
,
hti1
,
hti2
;
p_hash_bucket
hash_bucket
;
p_hash_elem
e0
,
e1
;
#if defined STACK_REGS || defined HAVE_
CC
0
#if defined STACK_REGS || defined HAVE_
cc
0
basic_block
bb
;
bitmap_head
dont_collect
;
...
...
@@ -495,7 +495,7 @@ collect_pattern_seqs (void)
}
#endif
#ifdef HAVE_
CC
0
#ifdef HAVE_
cc
0
/* Mark CC0 setters and users as ineligible for collection into sequences.
This is an over-conservative fix, since it is OK to include
a cc0_setter, but only if we also include the corresponding cc0_user,
...
...
@@ -515,7 +515,7 @@ collect_pattern_seqs (void)
}
#endif
#endif
/* defined STACK_REGS || defined HAVE_
CC
0 */
#endif
/* defined STACK_REGS || defined HAVE_
cc
0 */
/* Initialize PATTERN_SEQS to empty. */
pattern_seqs
=
0
;
...
...
@@ -529,13 +529,13 @@ collect_pattern_seqs (void)
FOR_EACH_HTAB_ELEMENT
(
hash_bucket
->
seq_candidates
,
e1
,
p_hash_elem
,
hti2
)
if
(
e0
!=
e1
#if defined STACK_REGS || defined HAVE_
CC
0
#if defined STACK_REGS || defined HAVE_
cc
0
&&
!
bitmap_bit_p
(
&
dont_collect
,
INSN_UID
(
e0
->
insn
))
&&
!
bitmap_bit_p
(
&
dont_collect
,
INSN_UID
(
e1
->
insn
))
#endif
)
match_seqs
(
e0
,
e1
);
#if defined STACK_REGS || defined HAVE_
CC
0
#if defined STACK_REGS || defined HAVE_
cc
0
/* Free unused data. */
bitmap_clear
(
&
dont_collect
);
#endif
...
...
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