mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 01:28:46 +00:00
Remove "highbound" parameter from value_array
value_array requires the passed-in bounds to match the length of the array_view it is given. This patch removes the redundant "highbound" parameter. Reviewed-by: John Baldwin <jhb@FreeBSD.org> Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
@@ -2515,7 +2515,7 @@ array_operation::evaluate (struct type *expect_type,
|
||||
objects. */
|
||||
argvec[tem] = in_args[tem]->evaluate_with_coercion (exp, noside);
|
||||
}
|
||||
return value_array (tem2, tem3, argvec);
|
||||
return value_array (tem2, argvec);
|
||||
}
|
||||
|
||||
value *
|
||||
|
||||
Reference in New Issue
Block a user