]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix typo in the testcase.
authorliuhongt <hongtao.liu@intel.com>
Tue, 11 Jul 2023 13:21:03 +0000 (21:21 +0800)
committerliuhongt <hongtao.liu@intel.com>
Tue, 11 Jul 2023 13:57:05 +0000 (21:57 +0800)
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.

gcc/testsuite/g++.target/i386/pr110170.C

index e638b12a5ee2264ecef77acca86432a9f24b103b..21cca8f3805276f978d4383e6e236bf7e44377e5 100644 (file)
@@ -84,7 +84,7 @@ TEST()
   if (
       !test1() || !test1r()
       || !test2() || !test2r()
-      || !test3() || !test4r()
+      || !test3() || !test3r()
       || !test4() || !test4r()
       ) __builtin_abort();
 }