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
5f431007
Commit
5f431007
authored
May 30, 2006
by
Mircea Namolaru
Committed by
Olga Golovanevsky
May 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for see
From-SVN: r114230
parent
55b2de75
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
gcc/see.c
+10
-2
No files found.
gcc/see.c
View file @
5f431007
...
...
@@ -674,6 +674,10 @@ see_get_extension_reg (rtx extension, bool return_dest_reg)
rtx
reg1
=
NULL
;
rtx
reg2
=
NULL
;
/* Parallel pattern for extension not supported for the moment. */
if
(
GET_CODE
(
PATTERN
(
extension
))
==
PARALLEL
)
return
NULL
;
set
=
single_set
(
extension
);
if
(
!
set
)
return
NULL
;
...
...
@@ -719,6 +723,10 @@ see_get_extension_data (rtx extension, enum machine_mode *source_mode)
if
(
!
extension
||
!
INSN_P
(
extension
))
return
UNKNOWN
;
/* Parallel pattern for extension not supported for the moment. */
if
(
GET_CODE
(
PATTERN
(
extension
))
==
PARALLEL
)
return
NOT_RELEVANT
;
set
=
single_set
(
extension
);
if
(
!
set
)
return
NOT_RELEVANT
;
...
...
@@ -3462,8 +3470,8 @@ see_analyze_one_def (rtx insn, enum machine_mode *source_mode,
relevant. Handling this extension as relevant would make things much
more complicated. */
next_insn
=
NEXT_INSN
(
insn
);
if
(
prev
_insn
&&
INSN_P
(
prev
_insn
)
if
(
next
_insn
&&
INSN_P
(
next
_insn
)
&&
(
see_get_extension_data
(
next_insn
,
&
next_source_mode
)
!=
NOT_RELEVANT
))
{
...
...
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