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
521f6615
Commit
521f6615
authored
Nov 20, 2008
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Follow up fix for GC19-015:
* utils.c (init_gigi_decls): Fix type mismatch. From-SVN: r142057
parent
a6bf9022
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/ada/gcc-interface/utils.c
+2
-1
No files found.
gcc/ada/gcc-interface/utils.c
View file @
521f6615
...
...
@@ -577,6 +577,7 @@ init_gigi_decls (tree long_long_float_type, tree exception_type)
/* Build the special descriptor type and its null node if needed. */
if
(
TARGET_VTABLE_USES_DESCRIPTORS
)
{
tree
null_node
=
fold_convert
(
ptr_void_ftype
,
null_pointer_node
);
tree
field_list
=
NULL_TREE
,
null_list
=
NULL_TREE
;
int
j
;
...
...
@@ -588,7 +589,7 @@ init_gigi_decls (tree long_long_float_type, tree exception_type)
fdesc_type_node
,
0
,
0
,
0
,
1
);
TREE_CHAIN
(
field
)
=
field_list
;
field_list
=
field
;
null_list
=
tree_cons
(
field
,
null_
pointer_
node
,
null_list
);
null_list
=
tree_cons
(
field
,
null_node
,
null_list
);
}
finish_record_type
(
fdesc_type_node
,
nreverse
(
field_list
),
0
,
false
);
...
...
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