aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2021-04-09 13:43:19 +0100
committerRichard Sandiford <richard.sandiford@arm.com>2021-04-09 13:43:19 +0100
commit64a8135d44354be22a94859a9acc728206ec94e6 (patch)
tree1ce2e2dc4135a139fa171519d2ebc0262abd3971 /gcc
parentb9af08feac045565a7d3adfcd74e9478e4b33bd2 (diff)
downloadgcc-64a8135d44354be22a94859a9acc728206ec94e6.zip
gcc-64a8135d44354be22a94859a9acc728206ec94e6.tar.gz
gcc-64a8135d44354be22a94859a9acc728206ec94e6.tar.bz2
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.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C b/gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C
index 9203d91..e112a38 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'} } */
}