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
3f6d0a8c
Commit
3f6d0a8c
authored
Sep 30, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_387_binary_op): Use AS2C instead of AS2 with null first arg.
From-SVN: r8186
parent
3520fbfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/config/i386/i386.c
+4
-4
No files found.
gcc/config/i386/i386.c
View file @
3f6d0a8c
...
...
@@ -2540,9 +2540,9 @@ output_387_binary_op (insn, operands)
return
strcat
(
buf
,
AS2
(
p
,
%
2
,
%
0
));
if
(
STACK_TOP_P
(
operands
[
0
]))
return
strcat
(
buf
,
AS2
(,
%
y2
,
%
0
));
return
strcat
(
buf
,
AS2
C
(
%
y2
,
%
0
));
else
return
strcat
(
buf
,
AS2
(,
%
2
,
%
0
));
return
strcat
(
buf
,
AS2
C
(
%
2
,
%
0
));
case
MINUS
:
case
DIV
:
...
...
@@ -2575,12 +2575,12 @@ output_387_binary_op (insn, operands)
if
(
STACK_TOP_P
(
operands
[
0
]))
{
if
(
STACK_TOP_P
(
operands
[
1
]))
return
strcat
(
buf
,
AS2
(,
%
y2
,
%
0
));
return
strcat
(
buf
,
AS2
C
(
%
y2
,
%
0
));
else
return
strcat
(
buf
,
AS2
(
r
,
%
y1
,
%
0
));
}
else
if
(
STACK_TOP_P
(
operands
[
1
]))
return
strcat
(
buf
,
AS2
(,
%
1
,
%
0
));
return
strcat
(
buf
,
AS2
C
(
%
1
,
%
0
));
else
return
strcat
(
buf
,
AS2
(
r
,
%
2
,
%
0
));
...
...
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