Fix testsuite bug
This commit is contained in:
committed by
Anthony Green
parent
f64e4a8655
commit
2f5626ce02
@@ -1,3 +1,8 @@
|
||||
2013-10-10 Sandra Loosemore <sandra@codesourcery.com>
|
||||
|
||||
* testsuite/libffi.call/cls_many_mixed_args.c (cls_ret_double_fn):
|
||||
Fix uninitialized variable.
|
||||
|
||||
2013-10-11 Marcus Shawcroft <marcus.shawcroft@arm.com>
|
||||
|
||||
* testsuite/libffi.call/many.c (many): Replace * with +.
|
||||
|
||||
@@ -15,7 +15,7 @@ static void cls_ret_double_fn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
||||
void* userdata __UNUSED__)
|
||||
{
|
||||
int i;
|
||||
double r;
|
||||
double r = 0;
|
||||
double t;
|
||||
for(i = 0; i < NARGS; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user