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
7e10a919
Commit
7e10a919
authored
Feb 29, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(cmpxf*): Allow for (compare (reg:XF) (mem:XF)).
From-SVN: r11383
parent
24f34136
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
gcc/config/i386/i386.md
+10
-7
No files found.
gcc/config/i386/i386.md
View file @
7e10a919
...
...
@@ -382,9 +382,9 @@
(define_insn ""
[
(set (cc0)
(match_operator 2 "VOIDmode_compare_op"
[
(match_operand:XF 0 "
register_operand" "f
")
(match_operand:XF 1 "
register_operand" "
f")]))
(clobber (match_scratch:HI 3 "=a"))]
[
(match_operand:XF 0 "
nonimmediate_operand" "f,fm
")
(match_operand:XF 1 "
nonimmediate_operand" "fm,
f")]))
(clobber (match_scratch:HI 3 "=a
,a
"))]
"TARGET_80387
&& (GET_CODE (operands
[
0
]
) != MEM || GET_CODE (operands
[
1
]
) != MEM)"
"
*
return output_float_compare (insn, operands);")
...
...
@@ -5605,10 +5605,12 @@ to memory, but better safe than sorry. */
(define_expand "casesi"
[
(set (match_dup 5)
(minus:SI (match_operand:SI 0 "general_operand" "")
(match_operand:SI 0 "general_operand" ""))
(set (match_dup 6)
(minus:SI (match_dup 5)
(match_operand:SI 1 "general_operand" "")))
(set (cc0)
(compare:CC (match_dup
5
)
(compare:CC (match_dup
6
)
(match_operand:SI 2 "general_operand" "")))
(set (pc)
(if_then_else (gtu (cc0)
...
...
@@ -5618,14 +5620,15 @@ to memory, but better safe than sorry. */
(parallel
[
(set (pc)
(minus:SI (reg:SI 3)
(mem:SI (plus:SI (mult:SI (match_dup
5
)
(mem:SI (plus:SI (mult:SI (match_dup
6
)
(const_int 4))
(label_ref (match_operand 3 "" ""))))))
(clobber (match_scratch:SI
6
""))])]
(clobber (match_scratch:SI
7
""))])]
"flag_pic"
"
{
operands
[
5
]
= gen_reg_rtx (SImode);
operands
[
6
]
= gen_reg_rtx (SImode);
current_function_uses_pic_offset_table = 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