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
a9bce3ab
Commit
a9bce3ab
authored
Jun 30, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fyl2x_sfxf3, fyl2x_dfxf3, fscale_sfxf3, fscale_dfxf3): Fix condition.
From-SVN: r68706
parent
a22a0908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.md
+6
-6
No files found.
gcc/ChangeLog
View file @
a9bce3ab
Mon Jun 30 15:36:29 CEST 2003 Jan Hubicka <jh@suse.cz>
(fyl2x_sfxf3, fyl2x_dfxf3, fscale_sfxf3, fscale_dfxf3): Fix condition.
2003-06-30 Hartmut Penner <hpenner@de.ibm.com>
* config/rs6000/rs6000.c (rs6000_split_altivec_in_gprs): New function.
...
...
gcc/config/i386/i386.md
View file @
a9bce3ab
...
...
@@ -15638,7 +15638,7 @@
(clobber (match_dup 1))])]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& flag_unsafe_math_optimizations
&& GET_MODE (operands
[
1
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
"
&& GET_MODE (operands
[
1
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
"
"fyl2x"
[
(set_attr "type" "fpspc")
(set_attr "mode" "SF")])
...
...
@@ -15651,7 +15651,7 @@
(clobber (match_dup 1))])]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& flag_unsafe_math_optimizations
&& GET_MODE (operands
[
1
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
"
&& GET_MODE (operands
[
1
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
"
"fyl2x"
[
(set_attr "type" "fpspc")
(set_attr "mode" "DF")])
...
...
@@ -15748,8 +15748,8 @@
(clobber (match_dup 1))])]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& flag_unsafe_math_optimizations
&& GET_MODE (operands
[
1
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
&& GET_MODE (operands
[
2
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
"
&& GET_MODE (operands
[
1
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
&& GET_MODE (operands
[
2
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
"
"fscale
\;
fstp
\t
%y1"
[
(set_attr "type" "fpspc")
(set_attr "mode" "SF")])
...
...
@@ -15762,8 +15762,8 @@
(clobber (match_dup 1))])]
"! TARGET_NO_FANCY_MATH_387 && TARGET_80387
&& flag_unsafe_math_optimizations
&& GET_MODE (operands
[
1
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
&& GET_MODE (operands
[
2
]
) ==
TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode
"
&& GET_MODE (operands
[
1
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
&& GET_MODE (operands
[
2
]
) ==
(TARGET_128BIT_LONG_DOUBLE ? TFmode : XFmode)
"
"fscale
\;
fstp
\t
%y1"
[
(set_attr "type" "fpspc")
(set_attr "mode" "DF")])
...
...
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