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
848a42b9
Commit
848a42b9
authored
May 23, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(hash_rtx): Avoid warning on int-to-pointer conversion.
(output_fpops): Cast args to bcopy to char *. From-SVN: r9789
parent
74028528
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
gcc/config/romp/romp.c
+4
-3
No files found.
gcc/config/romp/romp.c
View file @
848a42b9
...
...
@@ -1442,11 +1442,11 @@ hash_rtx (x)
if
(
fmt
[
i
]
==
'e'
)
hash
+=
hash_rtx
(
XEXP
(
x
,
i
));
else
if
(
fmt
[
i
]
==
'u'
)
hash
+=
(
int
)
XEXP
(
x
,
i
);
hash
+=
(
unsigned
HOST_WIDE_INT
)
XEXP
(
x
,
i
);
else
if
(
fmt
[
i
]
==
'i'
)
hash
+=
XINT
(
x
,
i
);
else
if
(
fmt
[
i
]
==
's'
)
hash
+=
(
int
)
XSTR
(
x
,
i
);
hash
+=
(
unsigned
HOST_WIDE_INT
)
XSTR
(
x
,
i
);
return
hash
;
}
...
...
@@ -1952,7 +1952,8 @@ output_fpops (file)
{
union
real_extract
u
;
bcopy
(
&
CONST_DOUBLE_LOW
(
immed
[
i
]),
&
u
,
sizeof
u
);
bcopy
((
char
*
)
&
CONST_DOUBLE_LOW
(
immed
[
i
]),
(
char
*
)
&
u
,
sizeof
u
);
if
(
GET_MODE
(
immed
[
i
])
==
DFmode
)
ASM_OUTPUT_DOUBLE
(
file
,
u
.
d
);
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