testsuite: arm: drop xfail for dg-bogus in bfloat_cpp_typecheck.C [PR124064]

After r11-6321-g550880a31688f1, the bogous errors are no longer emitted.

gcc/testsuite/ChangeLog:

	PR testsuite/124064
	* g++.target/arm/bfloat_cpp_typecheck.C: Drop xfail.

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
This commit is contained in:
Torbjörn SVENSSON
2026-02-13 14:01:57 +01:00
parent 45457c47a8
commit 7f0f5e109c

View File

@@ -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'} } */
}