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
68af29ce
Commit
68af29ce
authored
Mar 02, 2001
by
Jan Hubicka
Committed by
Jan Hubicka
Mar 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (noce_operand_ok): Handle properly unarry operations.
From-SVN: r40181
parent
584bb3ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/ifcvt.c
+2
-1
No files found.
gcc/ChangeLog
View file @
68af29ce
Fri Mar 2 11:59:43 CET 2001 Jan Hubicka <jh@suse.cz>
* ifcvt.c (noce_operand_ok): Handle properly unarry operations.
2001-03-02 Neil Booth <neil@daikokuya.demon.co.uk>
2001-03-02 Neil Booth <neil@daikokuya.demon.co.uk>
* cppfiles.c (struct include_file): Update.
* cppfiles.c (struct include_file): Update.
...
...
gcc/ifcvt.c
View file @
68af29ce
...
@@ -1417,8 +1417,9 @@ noce_operand_ok (op)
...
@@ -1417,8 +1417,9 @@ noce_operand_ok (op)
default
:
default
:
switch
(
GET_RTX_CLASS
(
GET_CODE
(
op
)))
switch
(
GET_RTX_CLASS
(
GET_CODE
(
op
)))
{
{
case
'c'
:
case
'1'
:
case
'1'
:
return
!
may_trap_p
(
XEXP
(
op
,
0
));
case
'c'
:
case
'2'
:
case
'2'
:
return
!
may_trap_p
(
XEXP
(
op
,
0
))
&&
!
may_trap_p
(
XEXP
(
op
,
1
));
return
!
may_trap_p
(
XEXP
(
op
,
0
))
&&
!
may_trap_p
(
XEXP
(
op
,
1
));
}
}
...
...
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