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
5d0cab94
Commit
5d0cab94
authored
Aug 13, 2001
by
Kazu Hirata
Committed by
Kazu Hirata
Aug 13, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jump.c: Fix formatting.
From-SVN: r44846
parent
7ba7767b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
28 deletions
+32
-28
gcc/ChangeLog
+4
-0
gcc/jump.c
+28
-28
No files found.
gcc/ChangeLog
View file @
5d0cab94
2001
-
08
-
13
Kazu
Hirata
<
kazu
@hxi
.
com
>
*
jump
.
c
:
Fix
formatting
.
2001
-
08
-
13
Kazu
Hirata
<
kazu
@hxi
.
com
>
*
config
/
h8300
/
h8300
.
md
(
zero_extendqihi2
)
:
Correct
the
insn
length
.
...
...
gcc/jump.c
View file @
5d0cab94
...
...
@@ -653,40 +653,40 @@ reversed_comparison_code_parts (code, arg0, arg1, insn)
&&
REVERSIBLE_CC_MODE
(
mode
))
{
#ifdef REVERSE_CONDITION
return
REVERSE_CONDITION
(
code
,
mode
);
return
REVERSE_CONDITION
(
code
,
mode
);
#endif
return
reverse_condition
(
code
);
}
return
reverse_condition
(
code
);
}
#endif
/* Try a few special cases based on the comparison code. */
switch
(
code
)
{
case
GEU
:
case
GTU
:
case
LEU
:
case
LTU
:
case
NE
:
case
EQ
:
/* It is always safe to reverse EQ and NE, even for the floating
point. Similary the unsigned comparisons are never used for
floating point so we can reverse them in the default way. */
return
reverse_condition
(
code
);
case
ORDERED
:
case
UNORDERED
:
case
LTGT
:
case
UNEQ
:
/* In case we already see unordered comparison, we can be sure to
be dealing with floating point so we don't need any more tests. */
return
reverse_condition_maybe_unordered
(
code
);
case
UNLT
:
case
UNLE
:
case
UNGT
:
case
UNGE
:
/* We don't have safe way to reverse these yet. */
return
UNKNOWN
;
default
:
break
;
case
GEU
:
case
GTU
:
case
LEU
:
case
LTU
:
case
NE
:
case
EQ
:
/* It is always safe to reverse EQ and NE, even for the floating
point. Similary the unsigned comparisons are never used for
floating point so we can reverse them in the default way. */
return
reverse_condition
(
code
);
case
ORDERED
:
case
UNORDERED
:
case
LTGT
:
case
UNEQ
:
/* In case we already see unordered comparison, we can be sure to
be dealing with floating point so we don't need any more tests. */
return
reverse_condition_maybe_unordered
(
code
);
case
UNLT
:
case
UNLE
:
case
UNGT
:
case
UNGE
:
/* We don't have safe way to reverse these yet. */
return
UNKNOWN
;
default
:
break
;
}
/* In case we give up IEEE compatibility, all comparisons are reversible. */
...
...
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