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
b88c08b6
Commit
b88c08b6
authored
Jun 20, 1997
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
91th Cygnus<->FSF quick merge
From-SVN: r14266
parent
afab5269
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
gcc/cp/ChangeLog
+9
-0
gcc/cp/lex.c
+1
-0
gcc/cp/typeck.c
+6
-0
No files found.
gcc/cp/ChangeLog
View file @
b88c08b6
Thu Jun 19 16:49:28 1997 Mike Stump <mrs@cygnus.com>
* typeck.c (c_expand_return): Make sure we clean up temporaries at
the end of return x;
Thu Jun 19 12:28:43 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* lex.c (check_for_missing_semicolon): Also check for CV_QUALIFIER.
Tue Jun 17 18:35:57 1997 Mike Stump <mrs@cygnus.com>
Tue Jun 17 18:35:57 1997 Mike Stump <mrs@cygnus.com>
* except.c (expand_builtin_throw): Add support
* except.c (expand_builtin_throw): Add support
...
...
gcc/cp/lex.c
View file @
b88c08b6
...
@@ -1780,6 +1780,7 @@ check_for_missing_semicolon (type)
...
@@ -1780,6 +1780,7 @@ check_for_missing_semicolon (type)
&&
yychar
!=
SCSPEC
&&
yychar
!=
SCSPEC
&&
yychar
!=
IDENTIFIER
&&
yychar
!=
IDENTIFIER
&&
yychar
!=
TYPENAME
&&
yychar
!=
TYPENAME
&&
yychar
!=
CV_QUALIFIER
&&
yychar
!=
SELFNAME
)
&&
yychar
!=
SELFNAME
)
||
end_of_file
)
||
end_of_file
)
{
{
...
...
gcc/cp/typeck.c
View file @
b88c08b6
...
@@ -7325,7 +7325,13 @@ c_expand_return (retval)
...
@@ -7325,7 +7325,13 @@ c_expand_return (retval)
result
=
build
(
INIT_EXPR
,
TREE_TYPE
(
result
),
result
,
retval
);
result
=
build
(
INIT_EXPR
,
TREE_TYPE
(
result
),
result
,
retval
);
TREE_SIDE_EFFECTS
(
result
)
=
1
;
TREE_SIDE_EFFECTS
(
result
)
=
1
;
}
}
expand_start_target_temps
();
expand_return
(
result
);
expand_return
(
result
);
expand_end_target_temps
();
current_function_returns_value
=
1
;
current_function_returns_value
=
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