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
8a12c32d
Commit
8a12c32d
authored
Mar 18, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(iterator_loop_epilogue): Don't clear DECL_RTL for a static decl.
From-SVN: r11554
parent
8ba46994
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/c-iterate.c
+4
-2
No files found.
gcc/c-iterate.c
View file @
8a12c32d
/* Build expressions with type checking for C compiler.
/* Build expressions with type checking for C compiler.
Copyright (C) 1987,
1988, 1989, 1992, 1993
Free Software Foundation, Inc.
Copyright (C) 1987,
88, 89, 92, 93, 1996
Free Software Foundation, Inc.
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -343,7 +343,9 @@ iterator_loop_epilogue (idecl, start_note, end_note)
...
@@ -343,7 +343,9 @@ iterator_loop_epilogue (idecl, start_note, end_note)
ITERATOR_BOUND_P
(
idecl
)
=
0
;
ITERATOR_BOUND_P
(
idecl
)
=
0
;
/* we can reset rtl since there is not chance that this expansion */
/* we can reset rtl since there is not chance that this expansion */
/* would be superseded by a higher level one */
/* would be superseded by a higher level one */
if
(
top_level_ixpansion_p
())
/* but don't do this if the decl is static, since we need to share */
/* the same decl in that case. */
if
(
top_level_ixpansion_p
()
&&
!
TREE_STATIC
(
idecl
))
DECL_RTL
(
idecl
)
=
0
;
DECL_RTL
(
idecl
)
=
0
;
if
(
end_note
)
if
(
end_note
)
*
end_note
=
emit_note
(
0
,
NOTE_INSN_DELETED
);
*
end_note
=
emit_note
(
0
,
NOTE_INSN_DELETED
);
...
...
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