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
1156b23c
Commit
1156b23c
authored
Aug 15, 2000
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor whitespace fixes
From-SVN: r35729
parent
7300c8eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
gcc/emit-rtl.c
+11
-9
No files found.
gcc/emit-rtl.c
View file @
1156b23c
...
...
@@ -937,7 +937,7 @@ gen_lowpart_common (mode, x)
{
case
SFmode
:
REAL_VALUE_TO_TARGET_SINGLE
(
r
,
i
[
endian
]);
i
[
1
-
endian
]
=
0
;
i
[
1
-
endian
]
=
0
;
break
;
case
DFmode
:
REAL_VALUE_TO_TARGET_DOUBLE
(
r
,
i
);
...
...
@@ -950,26 +950,28 @@ gen_lowpart_common (mode, x)
REAL_VALUE_TO_TARGET_LONG_DOUBLE
(
r
,
i
);
break
;
default:
abort
();
abort
();
}
/* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
and return it. */
#if HOST_BITS_PER_WIDE_INT == 32
return
immed_double_const
(
i
[
endian
],
i
[
1
-
endian
],
mode
);
return
immed_double_const
(
i
[
endian
],
i
[
1
-
endian
],
mode
);
#else
{
int
c
;
if
(
HOST_BITS_PER_WIDE_INT
!=
64
)
abort
();
abort
();
for
(
c
=
0
;
c
<
4
;
c
++
)
i
[
c
]
&=
0xffffffffL
;
i
[
c
]
&=
~
(
0L
)
;
return
immed_double_const
(
i
[
endian
*
3
]
|
(((
HOST_WIDE_INT
)
i
[
1
+
endian
])
<<
32
),
i
[
2
-
endian
]
|
(((
HOST_WIDE_INT
)
i
[
3
-
endian
*
3
])
<<
32
),
return
immed_double_const
(
i
[
endian
*
3
]
|
(((
HOST_WIDE_INT
)
i
[
1
+
endian
])
<<
32
),
i
[
2
-
endian
]
|
(((
HOST_WIDE_INT
)
i
[
3
-
endian
*
3
])
<<
32
),
mode
);
}
#endif
...
...
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