OSDN Git Service

* testsuite/libffi.call/cls_longdouble_va.c (main): Fix format string.
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Dec 2009 14:02:10 +0000 (14:02 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Dec 2009 14:02:10 +0000 (14:02 +0000)
Remove xfails for x86 linux targets.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154946 138bc75d-0d04-0410-961f-82ee72b054a4

libffi/ChangeLog
libffi/testsuite/libffi.call/cls_longdouble_va.c

index 28f7982..adf18ae 100644 (file)
@@ -1,6 +1,7 @@
 2009-12-03  Uros Bizjak  <ubizjak@gmail.com>
 
        * testsuite/libffi.call/cls_longdouble_va.c (main): Fix format string.
+       Remove xfails for x86 linux targets.
 
 2009-12-02  David Edelsohn  <edelsohn@gnu.org>
 
index df05b23..4914f32 100644 (file)
@@ -42,9 +42,9 @@ int main (void)
        args[2] = NULL;
 
        ffi_call(&cif, FFI_FN(printf), &res, args);
-       // { dg-output "7.0" { xfail i*86-*-linux-* x86_64-*-linux-* } }
+       // { dg-output "7.0" }
        printf("res: %d\n", (int) res);
-       // { dg-output "\nres: 4" { xfail i*86-*-linux-* x86_64-*-linux-* } }
+       // { dg-output "\nres: 4" }
 
        CHECK(ffi_prep_closure_loc(pcl, &cif, cls_longdouble_va_fn, NULL, code) == FFI_OK);