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
fcdb5d68
Commit
fcdb5d68
authored
Aug 22, 2007
by
Kai Tietz
Committed by
Kai Tietz
Aug 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH Fortran] bootstrap failure by wrong sizetype.
From-SVN: r127704
parent
23da9ed6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
gcc/fortran/ChangeLog
+5
-0
gcc/fortran/f95-lang.c
+9
-1
No files found.
gcc/fortran/ChangeLog
View file @
fcdb5d68
2007-08-22 Kai Tietz <kai.tietz@onevision.com>
* f95-lang.c: (gfc_init_decl_processing): Choose sizetype by using
Pmode.
2007-08-21 Paul Brook <paul@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
Mark Mitchell <mark@codesourcery.com>
...
...
gcc/fortran/f95-lang.c
View file @
fcdb5d68
...
...
@@ -615,7 +615,15 @@ gfc_init_decl_processing (void)
only use it for actual characters, not for INTEGER(1). Also, we
want double_type_node to actually have double precision. */
build_common_tree_nodes
(
false
,
false
);
set_sizetype
(
long_unsigned_type_node
);
/* x86_64 minw32 has a sizetype of "unsigned long long", most other hosts
have a sizetype of "unsigned long". Therefore choose the correct size
in mostly target independent way. */
if
(
TYPE_MODE
(
long_unsigned_type_node
)
==
Pmode
)
set_sizetype
(
long_unsigned_type_node
);
else
if
(
TYPE_MODE
(
long_long_unsigned_type_node
)
==
Pmode
)
set_sizetype
(
long_long_unsigned_type_node
);
else
set_sizetype
(
long_unsigned_type_node
);
build_common_tree_nodes_2
(
0
);
void_list_node
=
build_tree_list
(
NULL_TREE
,
void_type_node
);
...
...
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