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
f7c8fb3f
Commit
f7c8fb3f
authored
Dec 30, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(c_sizeof, c_sizeof_nowarn, c_size_in_bytes): Call force_fit_type with
end result. From-SVN: r2996
parent
91d33e36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
gcc/c-typeck.c
+14
-5
No files found.
gcc/c-typeck.c
View file @
f7c8fb3f
...
...
@@ -702,6 +702,7 @@ c_sizeof (type)
tree
type
;
{
enum
tree_code
code
=
TREE_CODE
(
type
);
tree
t
;
if
(
code
==
FUNCTION_TYPE
)
{
...
...
@@ -724,8 +725,10 @@ c_sizeof (type)
}
/* Convert in case a char is more than one unit. */
return
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
size_int
(
TYPE_PRECISION
(
char_type_node
)));
t
=
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
size_int
(
TYPE_PRECISION
(
char_type_node
)));
force_fit_type
(
t
);
return
t
;
}
tree
...
...
@@ -733,6 +736,7 @@ c_sizeof_nowarn (type)
tree
type
;
{
enum
tree_code
code
=
TREE_CODE
(
type
);
tree
t
;
if
(
code
==
FUNCTION_TYPE
||
code
==
VOID_TYPE
...
...
@@ -742,8 +746,10 @@ c_sizeof_nowarn (type)
return
size_int
(
0
);
/* Convert in case a char is more than one unit. */
return
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
size_int
(
TYPE_PRECISION
(
char_type_node
)));
t
=
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
size_int
(
TYPE_PRECISION
(
char_type_node
)));
force_fit_type
(
t
);
return
t
;
}
/* Compute the size to increment a pointer by. */
...
...
@@ -753,6 +759,7 @@ c_size_in_bytes (type)
tree
type
;
{
enum
tree_code
code
=
TREE_CODE
(
type
);
tree
t
;
if
(
code
==
FUNCTION_TYPE
)
return
size_int
(
1
);
...
...
@@ -767,8 +774,10 @@ c_size_in_bytes (type)
}
/* Convert in case a char is more than one unit. */
return
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
t
=
size_binop
(
CEIL_DIV_EXPR
,
TYPE_SIZE
(
type
),
size_int
(
BITS_PER_UNIT
));
force_fit_type
(
t
);
return
t
;
}
/* Implement the __alignof keyword: Return the minimum required
...
...
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