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
8384ac41
Commit
8384ac41
authored
Jul 07, 2011
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc-interface/misc.c (gnat_init): Tweak previous change.
From-SVN: r175960
parent
fbdd5d87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ada/ChangeLog
+6
-2
gcc/ada/gcc-interface/misc.c
+2
-2
No files found.
gcc/ada/ChangeLog
View file @
8384ac41
2011-07-07 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/misc.c (gnat_init): Tweak previous change.
2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR target/39150
...
...
@@ -5,8 +9,8 @@
2011-07-06 Richard Guenther <rguenther@suse.de>
* gcc-interface/misc.c (gnat_init):
Merge calls to
build_common_tree_nodes and build_common_tree_nodes_2.
* gcc-interface/misc.c (gnat_init):
Merge calls to
build_common_tree_nodes and build_common_tree_nodes_2.
Re-initialize boolean_false_node.
2011-07-02 Eric Botcazou <ebotcazou@adacore.com>
...
...
gcc/ada/gcc-interface/misc.c
View file @
8384ac41
...
...
@@ -315,11 +315,11 @@ gnat_init (void)
SET_TYPE_RM_MAX_VALUE
(
boolean_type_node
,
build_int_cst
(
boolean_type_node
,
1
));
SET_TYPE_RM_SIZE
(
boolean_type_node
,
bitsize_int
(
1
));
boolean_true_node
=
TYPE_MAX_VALUE
(
boolean_type_node
);
boolean_false_node
=
TYPE_MIN_VALUE
(
boolean_type_node
);
sbitsize_one_node
=
sbitsize_int
(
1
);
sbitsize_unit_node
=
sbitsize_int
(
BITS_PER_UNIT
);
boolean_true_node
=
TYPE_MAX_VALUE
(
boolean_type_node
);
boolean_false_node
=
TYPE_MIN_VALUE
(
boolean_type_node
);
ptr_void_type_node
=
build_pointer_type
(
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