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
40fe4dd5
Commit
40fe4dd5
authored
Oct 28, 2003
by
Zack Weinberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-decl.c (pushdecl): Clarify comment.
From-SVN: r72998
parent
f4d0b3d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
gcc/ChangeLog
+8
-4
gcc/c-decl.c
+4
-4
No files found.
gcc/ChangeLog
View file @
40fe4dd5
2003-10-27 Zack Weinberg <zack@codesourcery.com>
* c-decl.c (pushdecl): Clarify comment.
2003-10-27 Arnaud Charlet <charlet@act-europe.fr>
* doc/install.texi: Update instructions for Ada cross builds
...
...
@@ -84,7 +88,7 @@
2003-10-26 Bernardo Innocenti <bernie@develer.com>
* config/m68k/m68k.c (m68k_output_function_prologue): Eliminate
num_saved_regs, use current_frame.reg_no instead.
num_saved_regs, use current_frame.reg_no instead.
2003-10-26 Bernardo Innocenti <bernie@develer.com>
Paul Dale <pauli@snapgear.com>
...
...
@@ -171,9 +175,9 @@
2003-10-25 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_eax_live_at_start_p): New.
(ix86_expand_prologue): Save and restore eax around stack probe
if it's live.
* config/i386/i386.c (ix86_eax_live_at_start_p): New.
(ix86_expand_prologue): Save and restore eax around stack probe
if it's live.
2003-10-25 Jan Hubicka <jh@suse.cz>
...
...
gcc/c-decl.c
View file @
40fe4dd5
...
...
@@ -1712,10 +1712,10 @@ pushdecl (tree x)
if
(
DECL_EXTERNAL
(
x
)
||
scope
==
global_scope
)
{
/* Find and check against a previous, not-in-scope, external
decl for this identifier. (C99
s???: If two
declarations
with external linkage, referring to the same object,
have
incompatible types, the behavior is undefined).
*/
tree
ext
=
any_external_decl
(
name
);
decl for this identifier. (C99
6.2.7p2: All
declarations
that refer to the same object or function shall
have
compatible type; otherwise, the behavior is undefined.)
*/
tree
ext
=
any_external_decl
(
name
);
if
(
ext
)
{
if
(
duplicate_decls
(
x
,
ext
,
scope
!=
global_scope
,
...
...
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