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
93e3ba4f
Commit
93e3ba4f
authored
May 18, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1006
parent
26b3c423
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
8 deletions
+24
-8
gcc/c-decl.c
+24
-8
No files found.
gcc/c-decl.c
View file @
93e3ba4f
...
...
@@ -203,6 +203,10 @@ int pending_invalid_xref_line;
static
tree
enum_next_value
;
/* Nonzero means that there was overflow computing enum_next_value. */
static
int
enum_overflow
;
/* Parsing a function declarator leaves a list of parameter names
or a chain or parameter decls here. */
...
...
@@ -3100,7 +3104,7 @@ void
push_parm_decl
(
parm
)
tree
parm
;
{
tree
decl
;
tree
decl
,
olddecl
;
int
old_immediate_size_expand
=
immediate_size_expand
;
/* Don't try computing parm sizes now -- wait till fn is called. */
immediate_size_expand
=
0
;
...
...
@@ -3109,6 +3113,12 @@ push_parm_decl (parm)
push_obstacks_nochange
();
decl
=
grokdeclarator
(
TREE_VALUE
(
parm
),
TREE_PURPOSE
(
parm
),
PARM
,
0
);
if
(
DECL_NAME
(
decl
))
{
olddecl
=
lookup_name
(
DECL_NAME
(
decl
));
if
(
pedantic
&&
olddecl
!=
0
&&
TREE_CODE
(
olddecl
)
==
TYPE_DECL
)
pedwarn_with_decl
(
decl
,
"ANSI C forbids parameter `%s' shadowing typedef"
);
}
decl
=
pushdecl
(
decl
);
immediate_size_expand
=
old_immediate_size_expand
;
...
...
@@ -3339,7 +3349,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized)
longlong
=
1
;
}
else
if
(
specbits
&
(
1
<<
i
))
warning
(
"duplicate `%s'"
,
IDENTIFIER_POINTER
(
id
));
pedwarn
(
"duplicate `%s'"
,
IDENTIFIER_POINTER
(
id
));
specbits
|=
1
<<
i
;
goto
found
;
}
...
...
@@ -3490,9 +3500,9 @@ grokdeclarator (declarator, declspecs, decl_context, initialized)
volatilep
=
!!
(
specbits
&
1
<<
(
int
)
RID_VOLATILE
)
+
TYPE_VOLATILE
(
type
);
inlinep
=
!!
(
specbits
&
(
1
<<
(
int
)
RID_INLINE
));
if
(
constp
>
1
)
warning
(
"duplicate `const'"
);
pedwarn
(
"duplicate `const'"
);
if
(
volatilep
>
1
)
warning
(
"duplicate `volatile'"
);
pedwarn
(
"duplicate `volatile'"
);
if
(
!
flag_gen_aux_info
&&
(
TYPE_READONLY
(
type
)
||
TYPE_VOLATILE
(
type
)))
type
=
TYPE_MAIN_VARIANT
(
type
);
...
...
@@ -4793,6 +4803,7 @@ start_enum (name)
}
enum_next_value
=
integer_zero_node
;
enum_overflow
=
0
;
return
enumtype
;
}
...
...
@@ -4931,7 +4942,11 @@ build_enumerator (name, value)
/* It should no longer be possible to have NON_LVALUE_EXPR
in the default. */
if
(
value
==
0
)
value
=
enum_next_value
;
{
value
=
enum_next_value
;
if
(
enum_overflow
)
error
(
"overflow in enumeration values"
);
}
if
(
pedantic
&&
!
int_fits_type_p
(
value
,
integer_type_node
))
{
...
...
@@ -4941,6 +4956,7 @@ build_enumerator (name, value)
/* Set basis for default for next value. */
enum_next_value
=
build_binary_op
(
PLUS_EXPR
,
value
,
integer_one_node
,
0
);
enum_overflow
=
tree_int_cst_lt
(
enum_next_value
,
value
);
/* Now create a declaration for the enum value name. */
...
...
@@ -5082,9 +5098,6 @@ start_function (declspecs, declarator, nested)
if
(
TREE_ADDRESSABLE
(
DECL_ASSEMBLER_NAME
(
current_function_decl
)))
TREE_ADDRESSABLE
(
current_function_decl
)
=
1
;
/* Declare __NAME__ for this function. */
declare_function_name
(
IDENTIFIER_POINTER
(
DECL_NAME
(
current_function_decl
)));
return
1
;
}
...
...
@@ -5460,6 +5473,9 @@ store_parm_decls ()
if
(
c_function_varargs
)
mark_varargs
();
/* Declare __NAME__ for this function. */
declare_function_name
(
IDENTIFIER_POINTER
(
DECL_NAME
(
current_function_decl
)));
/* Set up parameters and prepare for return, for the function. */
expand_function_start
(
fndecl
,
0
);
...
...
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