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
bf9ab6b6
Commit
bf9ab6b6
authored
Sep 09, 2003
by
Mark Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix thinko in last patch.
From-SVN: r71228
parent
9649812a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
14 deletions
+8
-14
gcc/config/ia64/ia64.c
+8
-14
No files found.
gcc/config/ia64/ia64.c
View file @
bf9ab6b6
...
...
@@ -7695,6 +7695,7 @@ ia64_init_builtins (void)
=
build_function_type_list
(
void_type_node
,
pdi_type_node
,
NULL_TREE
);
tree
fpreg_type
;
tree
float80_type
;
/* The __fpreg type. */
fpreg_type
=
make_node
(
REAL_TYPE
);
...
...
@@ -7708,20 +7709,13 @@ ia64_init_builtins (void)
(
*
lang_hooks
.
types
.
register_builtin_type
)
(
fpreg_type
,
"__fpreg"
);
/* The __float80 type. */
if
(
INTEL_EXTENDED_IEEE_FORMAT
)
/* The __float80 type is a synonym for "long double". */
(
*
lang_hooks
.
types
.
register_builtin_type
)
(
long_double_type_node
,
"__float80"
);
else
{
tree
float80_type
=
make_node
(
REAL_TYPE
);
/* ??? Once the IA64 back end supports both 80-bit and 128-bit
floating types, this type should have XFmode, not TFmode.
TYPE_PRECISION should be 80 bits, not 128. */
TYPE_PRECISION
(
float80_type
)
=
128
;
layout_type
(
float80_type
);
(
*
lang_hooks
.
types
.
register_builtin_type
)
(
float80_type
,
"__float80"
);
}
float80_type
=
make_node
(
REAL_TYPE
);
/* ??? Once the IA64 back end supports both 80-bit and 128-bit
floating types, this type should have XFmode, not TFmode.
TYPE_PRECISION should be 80 bits, not 128. */
TYPE_PRECISION
(
float80_type
)
=
128
;
layout_type
(
float80_type
);
(
*
lang_hooks
.
types
.
register_builtin_type
)
(
float80_type
,
"__float80"
);
/* The __float128 type. */
if
(
INTEL_EXTENDED_IEEE_FORMAT
)
...
...
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