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
3d62d651
Commit
3d62d651
authored
Dec 16, 1999
by
Zack Weinberg
Committed by
Jeff Law
Dec 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.h (DECL_FROM_INLINE): Check DECL_ABSTRACT_ORIGIN too.
From-SVN: r30974
parent
27114460
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/tree.h
+5
-2
No files found.
gcc/ChangeLog
View file @
3d62d651
Thu
Dec
16
02
:
56
:
25
1999
Zack
Weinberg
<
zack
@bitmover
.
com
>
*
tree
.
h
(
DECL_FROM_INLINE
)
:
Check
DECL_ABSTRACT_ORIGIN
too
.
Thu
Dec
16
10
:
43
:
35
MET
1999
Jan
Hubicka
<
hubicka
@freesoft
.
cz
>
*
i386
.
md
(
movqi
)
:
Use
"nonimmediate_operand"
for
output
operand
.
...
...
gcc/tree.h
View file @
3d62d651
...
...
@@ -1165,8 +1165,11 @@ struct tree_type
/* Nonzero for any sort of ..._DECL node means this decl node represents
an inline instance of some original (abstract) decl from an inline function;
suppress any warnings about shadowing some other variable. */
#define DECL_FROM_INLINE(NODE) (DECL_ABSTRACT_ORIGIN (NODE) != (tree) 0)
suppress any warnings about shadowing some other variable.
FUNCTION_DECL nodes can also have their abstract origin set to themselves
(see save_for_inline_copying). */
#define DECL_FROM_INLINE(NODE) (DECL_ABSTRACT_ORIGIN (NODE) != (tree) 0 \
&& DECL_ABSTRACT_ORIGIN (NODE) != (NODE))
/* Nonzero if a _DECL means that the name of this decl should be ignored
for symbolic debug purposes. */
...
...
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