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
12f5c45e
Commit
12f5c45e
authored
Nov 11, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Nov 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (construct_container): Fix handling of SSE_CLASS.
From-SVN: r59020
parent
aaea99dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+4
-2
No files found.
gcc/ChangeLog
View file @
12f5c45e
Mon
Nov
11
12
:
06
:
08
CET
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
c
(
construct_container
)
:
Fix
handling
of
SSE_CLASS
.
2002
-
11
-
10
Joel
Sherrill
<
joel
@gcc
.
gnu
.
org
>
2002
-
11
-
10
Joel
Sherrill
<
joel
@gcc
.
gnu
.
org
>
*
config
/
m68k
/
t
-
crtstuff
(
crti
.
o
)
:
Use
this
...
*
config
/
m68k
/
t
-
crtstuff
(
crti
.
o
)
:
Use
this
...
...
...
gcc/config/i386/i386.c
View file @
12f5c45e
...
@@ -2113,14 +2113,16 @@ construct_container (mode, type, in_return, nintregs, nsseregs, intreg, sse_regn
...
@@ -2113,14 +2113,16 @@ construct_container (mode, type, in_return, nintregs, nsseregs, intreg, sse_regn
sse_regno
++
;
sse_regno
++
;
break
;
break
;
case
X86_64_SSE_CLASS
:
case
X86_64_SSE_CLASS
:
if
(
i
<
n
&&
class
[
i
+
1
]
==
X86_64_SSEUP_CLASS
)
if
(
i
<
n
-
1
&&
class
[
i
+
1
]
==
X86_64_SSEUP_CLASS
)
tmpmode
=
TImode
,
i
++
;
tmpmode
=
TImode
;
else
else
tmpmode
=
DImode
;
tmpmode
=
DImode
;
exp
[
nexps
++
]
=
gen_rtx_EXPR_LIST
(
VOIDmode
,
exp
[
nexps
++
]
=
gen_rtx_EXPR_LIST
(
VOIDmode
,
gen_rtx_REG
(
tmpmode
,
gen_rtx_REG
(
tmpmode
,
SSE_REGNO
(
sse_regno
)),
SSE_REGNO
(
sse_regno
)),
GEN_INT
(
i
*
8
));
GEN_INT
(
i
*
8
));
if
(
tmpmode
==
TImode
)
i
++
;
sse_regno
++
;
sse_regno
++
;
break
;
break
;
default
:
default
:
...
...
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