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
6fd72f81
Commit
6fd72f81
authored
May 18, 2001
by
David Edelsohn
Committed by
David Edelsohn
May 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rs6000.md (movsfcc,movdfcc): Remove NE case.
From-SVN: r42247
parent
a60d96b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
22 deletions
+6
-22
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.md
+2
-22
No files found.
gcc/ChangeLog
View file @
6fd72f81
2001
-
05
-
18
David
Edelsohn
<
edelsohn
@gnu
.
org
>
*
rs6000
.
md
(
movsfcc
,
movdfcc
)
:
Remove
NE
case
.
2001
-
05
-
17
Bruce
Korb
<
bkorb
@gnu
.
org
>
*
fixinc
/
fixincl
.
tpl
:
rewritten
as
an
AutoGen
version
5
template
...
...
gcc/config/rs6000/rs6000.md
View file @
6fd72f81
...
...
@@ -4891,7 +4891,7 @@
FAIL;
switch (code)
{
case GE: case EQ:
case NE:
case GE: case EQ:
op0 = rs6000_compare_op0;
op1 = rs6000_compare_op1;
break;
...
...
@@ -4922,11 +4922,6 @@
emit_insn (gen_negdf2 (temp, temp));
emit_insn (gen_fseldfsf4 (operands
[
0
]
, temp, operands
[
0
]
, operands
[
3
]
));
}
else if (code == NE)
{
emit_insn (gen_negdf2 (temp, temp));
emit_insn (gen_fseldfsf4 (operands
[
0
]
, temp, operands
[
3
]
, operands
[
0
]
));
}
}
else
{
...
...
@@ -4938,11 +4933,6 @@
emit_insn (gen_negsf2 (temp, temp));
emit_insn (gen_fselsfsf4 (operands
[
0
]
, temp, operands
[
0
]
, operands
[
3
]
));
}
else if (code == NE)
{
emit_insn (gen_negsf2 (temp, temp));
emit_insn (gen_fselsfsf4 (operands
[
0
]
, temp, operands
[
3
]
, operands
[
0
]
));
}
}
DONE;
}")
...
...
@@ -5138,7 +5128,7 @@
FAIL;
switch (code)
{
case GE: case EQ:
case NE:
case GE: case EQ:
op0 = rs6000_compare_op0;
op1 = rs6000_compare_op1;
break;
...
...
@@ -5169,11 +5159,6 @@
emit_insn (gen_negdf2 (temp, temp));
emit_insn (gen_fseldfdf4 (operands
[
0
]
, temp, operands
[
0
]
, operands
[
3
]
));
}
else if (code == NE)
{
emit_insn (gen_negdf2 (temp, temp));
emit_insn (gen_fseldfdf4 (operands
[
0
]
, temp, operands
[
3
]
, operands
[
0
]
));
}
}
else
{
...
...
@@ -5185,11 +5170,6 @@
emit_insn (gen_negsf2 (temp, temp));
emit_insn (gen_fselsfdf4 (operands
[
0
]
, temp, operands
[
0
]
, operands
[
3
]
));
}
else if (code == NE)
{
emit_insn (gen_negsf2 (temp, temp));
emit_insn (gen_fselsfdf4 (operands
[
0
]
, temp, operands
[
3
]
, operands
[
0
]
));
}
}
DONE;
}")
...
...
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