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
311b7cd7
Commit
311b7cd7
authored
Jul 30, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_operand): Integer CONST_DOUBLE is DImode.
From-SVN: r7836
parent
0b412022
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gcc/config/ns32k/ns32k.c
+1
-1
gcc/config/pa/pa.c
+2
-2
No files found.
gcc/config/ns32k/ns32k.c
View file @
311b7cd7
...
...
@@ -467,7 +467,7 @@ print_operand (file, x, code)
#endif
output_address
(
XEXP
(
x
,
0
));
}
else
if
(
GET_CODE
(
x
)
==
CONST_DOUBLE
&&
GET_MODE
(
x
)
!=
DI
mode
)
else
if
(
GET_CODE
(
x
)
==
CONST_DOUBLE
&&
GET_MODE
(
x
)
!=
VOID
mode
)
{
if
(
GET_MODE
(
x
)
==
DFmode
)
{
...
...
gcc/config/pa/pa.c
View file @
311b7cd7
/* Subroutines for insn-output.c for HPPA.
Copyright (C) 1992, 1993 Free Software Foundation, Inc.
Copyright (C) 1992, 1993
, 1994
Free Software Foundation, Inc.
Contributed by Tim Moore (moore@cs.utah.edu), based on sparc.c
This file is part of GNU CC.
...
...
@@ -2878,7 +2878,7 @@ print_operand (file, x, code)
else
fprintf
(
file
,
"0x%x"
,
u1
.
i
);
}
else
if
(
GET_CODE
(
x
)
==
CONST_DOUBLE
&&
GET_MODE
(
x
)
!=
DI
mode
)
else
if
(
GET_CODE
(
x
)
==
CONST_DOUBLE
&&
GET_MODE
(
x
)
!=
VOID
mode
)
{
union
{
double
d
;
int
i
[
2
];
}
u
;
u
.
i
[
0
]
=
XINT
(
x
,
0
);
u
.
i
[
1
]
=
XINT
(
x
,
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