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
1c12c179
Commit
1c12c179
authored
May 03, 2000
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (staticp, case LABEL_DECL): New case.
From-SVN: r33651
parent
f4118ce9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
gcc/ChangeLog
+6
-0
gcc/tree.c
+4
-3
No files found.
gcc/ChangeLog
View file @
1c12c179
Wed
May
3
13
:
29
:
54
2000
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
tree
.
c
(
staticp
,
case
LABEL_DECL
):
New
case
.
2000
-
05
-
03
Richard
Henderson
<
rth
@cygnus
.
com
>
*
Makefile
.
in
(
start
.
encap
):
Do
not
depend
on
LIBGCC1
.
...
...
@@ -48,6 +52,7 @@ Wed May 3 12:55:46 2000 Jim Wilson <wilson@cygnus.com>
(
DECL_POINTER_DEPTH
)
:
Add
macro
.
(
tree_decl
)
:
Add
pointer_depth
member
.
>>>>>>>
1
.
6472
Wed
May
3
22
:
52
:
53
2000
Denis
Chertykov
<
denisc
@overta
.
ru
>
*
config
/
avr
/
avr
-
protos
.
h
(
test_hard_reg_class
)
:
Declared
.
...
...
@@ -160,6 +165,7 @@ Wed May 3 12:40:53 2000 Clinton Popetz <cpopetz@cygnus.com>
*
rtl
.
def
(
define_insn_and_split
)
:
New
DEF_RTL_EXPR
.
*
md
.
texi
(
Insn
Splitting
)
:
Document
define_insn_and_split
.
>>>>>>>
1
.
6464
Tue
May
2
00
:
20
:
30
2000
Jason
Eckhardt
<
jle
@cygnus
.
com
>
*
flow
.
c
(
verify_flow_info
)
:
Added
two
more
sanity
checks
.
The
...
...
gcc/tree.c
View file @
1c12c179
...
...
@@ -2442,16 +2442,17 @@ staticp (arg)
case
FUNCTION_DECL
:
/* Nested functions aren't static, since taking their address
involves a trampoline. */
return
(
decl_function_context
(
arg
)
==
0
||
DECL_NO_STATIC_CHAIN
(
arg
))
&&
!
DECL_NON_ADDR_CONST_P
(
arg
);
return
(
decl_function_context
(
arg
)
==
0
||
DECL_NO_STATIC_CHAIN
(
arg
))
&&
!
DECL_NON_ADDR_CONST_P
(
arg
);
case
VAR_DECL
:
return
(
TREE_STATIC
(
arg
)
||
DECL_EXTERNAL
(
arg
))
&&
!
DECL_NON_ADDR_CONST_P
(
arg
);
&&
!
DECL_NON_ADDR_CONST_P
(
arg
);
case
CONSTRUCTOR
:
return
TREE_STATIC
(
arg
);
case
LABEL_DECL
:
case
STRING_CST
:
return
1
;
...
...
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