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
7f24e7c5
Commit
7f24e7c5
authored
Jan 10, 2003
by
Richard Henderson
Committed by
Richard Henderson
Jan 10, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/alpha/alpha.c (decl_has_samegp): True for !TREE_PUBLIC.
From-SVN: r61176
parent
99152b95
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.c
+3
-1
No files found.
gcc/ChangeLog
View file @
7f24e7c5
2003
-
01
-
10
Richard
Henderson
<
rth
@redhat
.
com
>
*
config
/
alpha
/
alpha
.
c
(
decl_has_samegp
)
:
True
for
!
TREE_PUBLIC
.
2003
-
01
-
10
Geoffrey
Keating
<
geoffk
@apple
.
com
>
*
ggc
-
page
.
c
(
ggc_collect
)
:
Avoid
overflow
computing
...
...
gcc/config/alpha/alpha.c
View file @
7f24e7c5
...
...
@@ -1842,7 +1842,9 @@ decl_has_samegp (decl)
return
true
;
/* Functions that are not external are defined in this UoT. */
return
!
DECL_EXTERNAL
(
decl
);
/* ??? Irritatingly, static functions not yet emitted are still
marked "external". Apply this to non-static functions only. */
return
!
TREE_PUBLIC
(
decl
)
||
!
DECL_EXTERNAL
(
decl
);
}
/* Return true if EXP should be placed in the small data section. */
...
...
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