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
8abd2cbe
Commit
8abd2cbe
authored
May 19, 2010
by
Nathan Froyd
Committed by
Nathan Froyd
May 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (pop_arguments): Fix use of undeclared variable.
From-SVN: r159555
parent
39b27b3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/java/ChangeLog
+4
-0
gcc/java/expr.c
+1
-1
No files found.
gcc/java/ChangeLog
View file @
8abd2cbe
2010
-
05
-
18
Nathan
Froyd
<
froydnj
@
codesourcery
.
com
>
*
expr
.
c
(
pop_arguments
):
Fix
use
of
undeclared
variable
.
2010
-
05
-
18
Nathan
Froyd
<
froydnj
@
codesourcery
.
com
>
*
expr
.
c
(
expand_java_multianewarray
):
Use
build_call_vec
instead
of
build_call_list
.
(
pop_arguments
):
Return
a
VEC
instead
of
a
tree
.
Take
a
method
type
...
...
gcc/java/expr.c
View file @
8abd2cbe
...
...
@@ -1949,7 +1949,7 @@ pop_arguments (tree method_type)
VEC_safe_push
(
tree
,
gc
,
args
,
type
);
}
arity
=
VEC_length
(
tree
,
typestack
);
arity
=
VEC_length
(
tree
,
args
);
while
(
arity
--
)
{
...
...
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