public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [r13-3463 Regression] FAIL: gcc.target/i386/builtin_target.c (test for excess errors) on Linux/x86_64
@ 2022-10-25  3:39 haochen.jiang
  2022-10-25  4:23 ` [PATCH][pushed] i386: fix pedantic warning Martin Liška
  0 siblings, 1 reply; 2+ messages in thread
From: haochen.jiang @ 2022-10-25  3:39 UTC (permalink / raw)
  To: haochen.jiang, gcc-patches, gcc-regression, mliska

On Linux/x86_64,

f751bf4c5d1aaa1aacfcbdec62881c5ea1175dfb is the first bad commit
commit f751bf4c5d1aaa1aacfcbdec62881c5ea1175dfb
Author: Martin Liska <mliska@suse.cz>
Date:   Mon Oct 24 15:34:39 2022 +0200

    x86: fix VENDOR_MAX enum value

caused

FAIL: gcc.target/i386/builtin_target.c (test for excess errors)

with GCC configured with

../../gcc/configure --prefix=/export/users/haochenj/src/gcc-bisect/master/master/r13-3463/usr --enable-clocale=gnu --with-system-zlib --with-demangler-in-ld --with-fpmath=sse --enable-languages=c,c++,fortran --enable-cet --without-isl --enable-libmpx x86_64-linux --disable-bootstrap

To reproduce:

$ cd {build_dir}/gcc && make check RUNTESTFLAGS="i386.exp=gcc.target/i386/builtin_target.c --target_board='unix{-m32}'"
$ cd {build_dir}/gcc && make check RUNTESTFLAGS="i386.exp=gcc.target/i386/builtin_target.c --target_board='unix{-m32\ -march=cascadelake}'"
$ cd {build_dir}/gcc && make check RUNTESTFLAGS="i386.exp=gcc.target/i386/builtin_target.c --target_board='unix{-m64}'"
$ cd {build_dir}/gcc && make check RUNTESTFLAGS="i386.exp=gcc.target/i386/builtin_target.c --target_board='unix{-m64\ -march=cascadelake}'"

(Please do not reply to this email, for question about this report, contact me at haochen dot jiang at intel.com)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH][pushed] i386: fix pedantic warning
  2022-10-25  3:39 [r13-3463 Regression] FAIL: gcc.target/i386/builtin_target.c (test for excess errors) on Linux/x86_64 haochen.jiang
@ 2022-10-25  4:23 ` Martin Liška
  0 siblings, 0 replies; 2+ messages in thread
From: Martin Liška @ 2022-10-25  4:23 UTC (permalink / raw)
  To: gcc-patches

Pushed. Sorry for the stupid error, I noticed the test became
UNRESOLVED, but I forgot to investigate that.

Cheers,
Martin

	PR target/107364

gcc/ChangeLog:

	* common/config/i386/i386-cpuinfo.h (enum processor_vendor):
	Fix pedantic warning.
---
 gcc/common/config/i386/i386-cpuinfo.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/common/config/i386/i386-cpuinfo.h b/gcc/common/config/i386/i386-cpuinfo.h
index 586a1a2d0f6..761af2715f0 100644
--- a/gcc/common/config/i386/i386-cpuinfo.h
+++ b/gcc/common/config/i386/i386-cpuinfo.h
@@ -37,7 +37,7 @@ enum processor_vendor
 
   /* Maximum values must be at the end of this enum.  */
   VENDOR_MAX,
-  BUILTIN_VENDOR_MAX = VENDOR_OTHER,
+  BUILTIN_VENDOR_MAX = VENDOR_OTHER
 };
 
 /* Any new types or subtypes have to be inserted at the end. */
-- 
2.38.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-25  4:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-25  3:39 [r13-3463 Regression] FAIL: gcc.target/i386/builtin_target.c (test for excess errors) on Linux/x86_64 haochen.jiang
2022-10-25  4:23 ` [PATCH][pushed] i386: fix pedantic warning Martin Liška

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).