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
61a66555
Commit
61a66555
authored
Jul 06, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_move_quad): Implement CNSTOP case.
From-SVN: r4861
parent
1bc147fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
gcc/config/sparc/sparc.c
+14
-9
No files found.
gcc/config/sparc/sparc.c
View file @
61a66555
...
...
@@ -1298,15 +1298,20 @@ output_move_quad (operands)
}
else
if
(
optype1
==
CNSTOP
)
{
/* This case isn't implemented yet, because there is no internal
representation for quad-word constants, and there is no split_quad
function. */
#if 0
split_quad (op1, &wordpart[0][1], &wordpart[1][1],
&wordpart[2][1], &wordpart[3][1]);
#else
abort
();
#endif
REAL_VALUE_TYPE
r
;
long
l
[
4
];
/* This only works for TFmode floating point constants. */
if
(
GET_CODE
(
op1
)
!=
CONST_DOUBLE
||
GET_MODE
(
op1
)
!=
TFmode
)
abort
();
REAL_VALUE_FROM_CONST_DOUBLE
(
r
,
op1
);
REAL_VALUE_TO_TARGET_LONG_DOUBLE
(
r
,
l
);
wordpart
[
0
][
1
]
=
GEN_INT
(
l
[
0
]);
wordpart
[
1
][
1
]
=
GEN_INT
(
l
[
1
]);
wordpart
[
2
][
1
]
=
GEN_INT
(
l
[
2
]);
wordpart
[
3
][
1
]
=
GEN_INT
(
l
[
3
]);
}
else
{
...
...
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