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
c60ee6f5
Commit
c60ee6f5
authored
Aug 27, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Aug 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (classify_argument): Handle variable sized objects.
From-SVN: r56609
parent
49c3c980
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+4
-0
No files found.
gcc/ChangeLog
View file @
c60ee6f5
Tue
Aug
27
19
:
51
:
05
CEST
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
c
(
classify_argument
)
:
Handle
variable
sized
objects
.
Tue
Aug
27
19
:
18
:
16
CEST
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
c
(
ix86_expand_int_movcc
)
:
Fix
RTL
sharing
problem
...
...
gcc/config/i386/i386.c
View file @
c60ee6f5
...
...
@@ -1594,6 +1594,10 @@ classify_argument (mode, type, classes, bit_offset)
(
mode
==
BLKmode
)
?
int_size_in_bytes
(
type
)
:
(
int
)
GET_MODE_SIZE
(
mode
);
int
words
=
(
bytes
+
(
bit_offset
%
64
)
/
8
+
UNITS_PER_WORD
-
1
)
/
UNITS_PER_WORD
;
/* Variable sized entities are always passed/returned in memory. */
if
(
bytes
<
0
)
return
0
;
if
(
type
&&
AGGREGATE_TYPE_P
(
type
))
{
int
i
;
...
...
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