Fix output expectations in cls_dbls_struct.c test

This test with invalid output expectations may fail on some targets
(e.g. ARC processors).

Signed-off-by: Yuriy Kolerov <yuriy.kolerov@synopsys.com>
This commit is contained in:
Yuriy Kolerov
2016-07-29 19:18:41 +03:00
parent f74ea2dc79
commit f3201733d5

View File

@@ -57,10 +57,10 @@ int main(int argc __UNUSED__, char** argv __UNUSED__)
CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_gn, NULL, code) == FFI_OK);
((void*(*)(Dbls))(code))(arg);
/* { dg-output "1.0 2.0\n" } */
/* { dg-output "1.0 2.0" } */
closure_test_fn(arg);
/* { dg-output "1.0 2.0\n" } */
/* { dg-output "\n1.0 2.0" } */
return 0;
}