From: Richard Sandiford Date: Fri, 9 Apr 2021 12:43:19 +0000 (+0100) Subject: testsuite: Remove bfloat_cpp_typecheck.C XFAILs X-Git-Tag: basepoints/gcc-12~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64a8135d44354be22a94859a9acc728206ec94e6;p=thirdparty%2Fgcc.git testsuite: Remove bfloat_cpp_typecheck.C XFAILs These tests are passing on all my runs, and it looks like they are for Christophe's runs too. We can reapply with a tighter target selector if this is still a problem for some configurations. gcc/testsuite/ * g++.target/aarch64/bfloat_cpp_typecheck.C: Remove XFAILs. --- diff --git a/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C b/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C index 9203d91f8ff0..e112a38f6ad3 100644 --- a/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C +++ b/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C @@ -7,8 +7,8 @@ void foo (void) { - bfloat16_t (); /* { dg-bogus {invalid conversion to type 'bfloat16_t'} "" { xfail *-*-* } } */ - bfloat16_t a = bfloat16_t(); /* { dg-bogus {invalid conversion to type 'bfloat16_t'} "" { xfail *-*-* } } */ + bfloat16_t (); /* { dg-bogus {invalid conversion to type 'bfloat16_t'} "" } */ + bfloat16_t a = bfloat16_t(); /* { dg-bogus {invalid conversion to type 'bfloat16_t'} "" } */ bfloat16_t (0x1234); /* { dg-error {invalid conversion to type 'bfloat16_t'} } */ bfloat16_t (0.1); /* { dg-error {invalid conversion to type 'bfloat16_t'} } */ }