summaryrefslogtreecommitdiff
path: root/gcc/java/expr.c
diff options
context:
space:
mode:
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-19 01:15:43 +0000
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-19 01:15:43 +0000
commitbd8191cfefa19f7d08f49baf401f8caaffadec19 (patch)
treeae0bfbb5332e41a0800e914a01656855be3b39d1 /gcc/java/expr.c
parent578fcce9dee02ac2ac2a7f76634d8befccc51ef3 (diff)
* expr.c (pop_arguments): Fix use of undeclared variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159555 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r--gcc/java/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c
index 5eacd646fe4a..177a03858e75 100644
--- a/gcc/java/expr.c
+++ b/gcc/java/expr.c
@@ -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--)
{