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
beb31faa
Commit
beb31faa
authored
Feb 17, 1998
by
Jason Merrill
Committed by
Jason Merrill
Feb 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* parse.y (simple_stmt): Use getdecls() to check for decl.
From-SVN: r18032
parent
a11759a3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/cp/ChangeLog
+4
-0
gcc/cp/parse.c
+2
-2
gcc/cp/parse.y
+2
-2
No files found.
gcc/cp/ChangeLog
View file @
beb31faa
Tue Feb 17 11:54:16 1998 Jason Merrill <jason@yorick.cygnus.com>
* parse.y (simple_stmt): Use getdecls() to check for decl.
Sat Feb 14 11:50:51 1998 Manfred Hollstein <manfred@s-direktnet.de>
* Make-lang.in (DEMANGLER_INSTALL_NAME, DEMANGLER_CROSS_NAME): New
...
...
gcc/cp/parse.c
View file @
beb31faa
...
...
@@ -7483,7 +7483,7 @@ case 687:
/* If the condition wasn't a declaration, clear out the
block we made for it and start a new one here so the
optimization in expand_end_loop will work. */
if
(
TREE_CODE
(
yyvsp
[
0
].
ttype
)
!=
VAR_DECL
)
if
(
getdecls
()
==
NULL_TREE
)
{
do_poplevel
();
do_pushlevel
();
...
...
@@ -7615,7 +7615,7 @@ case 694:
/* If the condition wasn't a declaration, clear out the
block we made for it and start a new one here so the
optimization in expand_end_loop will work. */
if
(
yyvsp
[
-
1
].
ttype
==
NULL_TREE
||
TREE_CODE
(
yyvsp
[
-
1
].
ttype
)
!=
VAR_DECL
)
if
(
getdecls
()
==
NULL_TREE
)
{
do_poplevel
();
do_pushlevel
();
...
...
gcc/cp/parse.y
View file @
beb31faa
...
...
@@ -3658,7 +3658,7 @@ simple_stmt:
/* If the condition wasn't a declaration, clear out the
block we made for it and start a new one here so the
optimization in expand_end_loop will work. */
if (
TREE_CODE ($4) != VAR_DECL
)
if (
getdecls () == NULL_TREE
)
{
do_poplevel ();
do_pushlevel ();
...
...
@@ -3776,7 +3776,7 @@ simple_stmt:
/* If the condition wasn't a declaration, clear out the
block we made for it and start a new one here so the
optimization in expand_end_loop will work. */
if (
$7 == NULL_TREE || TREE_CODE ($7) != VAR_DECL
)
if (
getdecls () == NULL_TREE
)
{
do_poplevel ();
do_pushlevel ();
...
...
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