From: Stefan Schulze Frielinghaus Date: Tue, 22 Oct 2024 06:58:14 +0000 (+0200) Subject: testsuite: Fix typo in ext-floating19.C X-Git-Tag: basepoints/gcc-16~5015 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9263523b7e522e5b8c9ac70df5efc73632c19380;p=thirdparty%2Fgcc.git testsuite: Fix typo in ext-floating19.C gcc/testsuite/ChangeLog: * g++.dg/cpp23/ext-floating19.C: Fix typo for bfloat16 guard. --- diff --git a/gcc/testsuite/g++.dg/cpp23/ext-floating19.C b/gcc/testsuite/g++.dg/cpp23/ext-floating19.C index dfbedb986990..a79f7d6e202f 100644 --- a/gcc/testsuite/g++.dg/cpp23/ext-floating19.C +++ b/gcc/testsuite/g++.dg/cpp23/ext-floating19.C @@ -15,6 +15,6 @@ auto x64 = 3.14f64; #ifdef __STDCPP_FLOAT128_T__ auto x128 = 3.14f128; #endif -#ifdef __STDCPP_FLOAT16_T__ +#ifdef __STDCPP_BFLOAT16_T__ auto xbf = 1.2bf16; #endif