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
f444e553
Commit
f444e553
authored
Jan 17, 1995
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set boolean_*, pedantic_lvalues
From-SVN: r8766
parent
e9866da3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
gcc/c-decl.c
+10
-0
No files found.
gcc/c-decl.c
View file @
f444e553
...
...
@@ -116,6 +116,10 @@ tree unsigned_type_node;
tree
long_unsigned_type_node
;
tree
long_long_unsigned_type_node
;
tree
boolean_type_node
;
tree
boolean_false_node
;
tree
boolean_true_node
;
tree
ptrdiff_type_node
;
tree
unsigned_char_type_node
;
...
...
@@ -2891,6 +2895,10 @@ init_decl_processing ()
integer_one_node
=
build_int_2
(
1
,
0
);
TREE_TYPE
(
integer_one_node
)
=
integer_type_node
;
boolean_type_node
=
integer_type_node
;
boolean_true_node
=
integer_one_node
;
boolean_false_node
=
integer_zero_node
;
size_zero_node
=
build_int_2
(
0
,
0
);
TREE_TYPE
(
size_zero_node
)
=
sizetype
;
size_one_node
=
build_int_2
(
1
,
0
);
...
...
@@ -3223,6 +3231,8 @@ init_decl_processing ()
NULL_PTR);
#endif
pedantic_lvalues
=
pedantic
;
/* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
declare_function_name
();
...
...
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