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
8698cce3
Commit
8698cce3
authored
Feb 04, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(gen_lowpart_common, gen_highpart): Test *_BIG_ENDIAN with "if", not
#if and fix one erroneous test. From-SVN: r6479
parent
bac7cdfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
gcc/emit-rtl.c
+16
-16
No files found.
gcc/emit-rtl.c
View file @
8698cce3
...
...
@@ -708,12 +708,12 @@ gen_lowpart_common (mode, x)
else
low
=
CONST_DOUBLE_LOW
(
x
),
high
=
CONST_DOUBLE_HIGH
(
x
);
/* TARGET_DOUBLE takes the addressing order of the target machine. */
#ifdef WORDS_BIG_ENDIAN
i
[
0
]
=
high
,
i
[
1
]
=
low
;
#else
i
[
0
]
=
low
,
i
[
1
]
=
high
;
#endif
/* REAL_VALUE_TARGET_DOUBLE takes the addressing order of the
target machine. */
i
f
(
WORDS_BIG_ENDIAN
)
i
[
0
]
=
high
,
i
[
1
]
=
low
;
else
i
[
0
]
=
low
,
i
[
1
]
=
high
;
r
=
REAL_VALUE_FROM_TARGET_DOUBLE
(
i
);
return
immed_real_const_1
(
r
,
mode
);
...
...
@@ -870,16 +870,16 @@ gen_highpart (mode, x)
else
if
(
GET_CODE
(
x
)
==
MEM
)
{
register
int
offset
=
0
;
#if !WORDS_BIG_ENDIAN
offset
=
(
MAX
(
GET_MODE_SIZE
(
GET_MODE
(
x
)),
UNITS_PER_WORD
)
-
MAX
(
GET_MODE_SIZE
(
mode
),
UNITS_PER_WORD
));
#endif
#if !
BYTES_BIG_ENDIAN
if
(
GET_MODE_SIZE
(
mode
)
<
UNITS_PER_WORD
)
if
(
!
WORDS_BIG_ENDIAN
)
offset
=
(
MAX
(
GET_MODE_SIZE
(
GET_MODE
(
x
)),
UNITS_PER_WORD
)
-
MAX
(
GET_MODE_SIZE
(
mode
),
UNITS_PER_WORD
));
if
(
!
BYTES_BIG_ENDIAN
&&
GET_MODE_SIZE
(
mode
)
<
UNITS_PER_WORD
)
offset
-=
(
GET_MODE_SIZE
(
mode
)
-
MIN
(
UNITS_PER_WORD
,
GET_MODE_SIZE
(
GET_MODE
(
x
))));
#endif
return
change_address
(
x
,
mode
,
plus_constant
(
XEXP
(
x
,
0
),
offset
));
}
else
if
(
GET_CODE
(
x
)
==
SUBREG
)
...
...
@@ -895,12 +895,12 @@ gen_highpart (mode, x)
{
int
word
=
0
;
#if !
WORDS_BIG_ENDIAN
if
(
GET_MODE_SIZE
(
GET_MODE
(
x
))
>
UNITS_PER_WORD
)
if
(
!
WORDS_BIG_ENDIAN
&&
GET_MODE_SIZE
(
GET_MODE
(
x
))
>
UNITS_PER_WORD
)
word
=
((
GET_MODE_SIZE
(
GET_MODE
(
x
))
-
MAX
(
GET_MODE_SIZE
(
mode
),
UNITS_PER_WORD
))
/
UNITS_PER_WORD
);
#endif
if
(
REGNO
(
x
)
<
FIRST_PSEUDO_REGISTER
/* integrate.c can't handle parts of a return value register. */
&&
(
!
REG_FUNCTION_VALUE_P
(
x
)
...
...
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