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
44035081
Commit
44035081
authored
Jan 19, 2006
by
Jan Hubicka
Committed by
Jan Hubicka
Jan 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-vect-patterns.c (vect_pattern_recog_1): Prevent parse error.
From-SVN: r109962
parent
79c29032
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/tree-vect-patterns.c
+2
-2
No files found.
gcc/ChangeLog
View file @
44035081
2006-01-19 Jan Hubicka <jh@suse.cz>
* tree-vect-patterns.c (vect_pattern_recog_1): Prevent parse error.
2006-01-19 Paolo Bonzini <bonzini@gnu.org>
* combine.c (try_combine): Do not worry about MEMs wrapped by USEs.
...
...
gcc/tree-vect-patterns.c
View file @
44035081
...
...
@@ -459,7 +459,7 @@ vect_recog_widen_sum_pattern (tree last_stmt, tree *type_in, tree *type_out)
static
void
vect_pattern_recog_1
(
tree
(
*
vect_recog_func
_ptr
)
(
tree
,
tree
*
,
tree
*
),
tree
(
*
vect_recog_func
)
(
tree
,
tree
*
,
tree
*
),
block_stmt_iterator
si
)
{
tree
stmt
=
bsi_stmt
(
si
);
...
...
@@ -474,7 +474,7 @@ vect_pattern_recog_1 (
tree
var
,
var_name
;
stmt_ann_t
ann
;
pattern_expr
=
(
*
vect_recog_func
_ptr
)
(
stmt
,
&
type_in
,
&
type_out
);
pattern_expr
=
(
*
vect_recog_func
)
(
stmt
,
&
type_in
,
&
type_out
);
if
(
!
pattern_expr
)
return
;
...
...
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