From: liuhongt Date: Tue, 11 Jul 2023 13:21:03 +0000 (+0800) Subject: Fix typo in the testcase. X-Git-Tag: basepoints/gcc-15~7707 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5c64efb1367459dbc2d2e29856f23908cb503c1;p=thirdparty%2Fgcc.git Fix typo in the testcase. Antony Polukhin 2023-07-11 09:51:58 UTC There's a typo at https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/testsuite/g%2B%2B.target/i386/pr110170.C;h=e638b12a5ee2264ecef77acca86432a9f24b103b;hb=d41a57c46df6f8f7dae0c0a8b349e734806a837b#l87 It should be `|| !test3() || !test3r()` rather than `|| !test3() || !test4r()` gcc/testsuite/ChangeLog: PR target/110170 * g++.target/i386/pr110170.C: Fix typo. --- diff --git a/gcc/testsuite/g++.target/i386/pr110170.C b/gcc/testsuite/g++.target/i386/pr110170.C index e638b12a5ee2..21cca8f38052 100644 --- a/gcc/testsuite/g++.target/i386/pr110170.C +++ b/gcc/testsuite/g++.target/i386/pr110170.C @@ -84,7 +84,7 @@ TEST() if ( !test1() || !test1r() || !test2() || !test2r() - || !test3() || !test4r() + || !test3() || !test3r() || !test4() || !test4r() ) __builtin_abort(); }