From: Borislav Petkov <bp@alien8.de> To: linux-toolchains@vger.kernel.org Cc: Michael Matz <matz@suse.de>, Richard Biener <rguenther@suse.de>, lkml <linux-kernel@vger.kernel.org> Subject: older gccs and case labels producing integer constants Date: Tue, 5 Apr 2022 11:50:35 +0200 [thread overview] Message-ID: <YkwQ6+tIH8GQpuct@zn.tnic> (raw) Hi folks, I'm starting to see failures like this on allmodconfig builds: sound/usb/midi.c: In function ‘snd_usbmidi_out_endpoint_create’: sound/usb/midi.c:1389:2: error: case label does not reduce to an integer constant case (((0xfc08) << 16) | (0x0101)): ^~~~ (The case statement is a macro but it evaluates to what I have there) and that thing fails with $ gcc --version gcc (SUSE Linux) 7.5.0 although it doesn't have any problems building with newer compilers. I'm presuming older gccs consider those case statements signed ints and the following fixes it: case ((((unsigned int)0xfc08) << 16) | (0x0101)): and I guess we can whack the couple of occurrences but what I'm wondering is why does this work with newer gccs? Thx. -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette
next reply other threads:[~2022-04-06 0:35 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-04-05 9:50 Borislav Petkov [this message] 2022-04-05 9:58 ` Richard Biener 2022-04-05 10:04 ` Borislav Petkov 2022-04-05 10:06 ` Richard Biener 2022-04-05 10:36 ` Borislav Petkov 2022-04-05 10:45 ` Borislav Petkov 2022-04-05 11:41 ` Richard Biener 2022-04-07 15:16 ` Borislav Petkov 2022-04-05 11:37 ` Richard Biener 2022-04-06 9:53 ` Jakub Jelinek 2022-04-06 10:04 ` Jakub Jelinek 2022-04-05 12:23 ` Peter Zijlstra 2022-04-05 12:39 ` Michael Matz 2022-04-05 12:53 ` Richard Biener 2022-04-05 13:04 ` Borislav Petkov 2022-04-06 10:13 ` Jakub Jelinek
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=YkwQ6+tIH8GQpuct@zn.tnic \ --to=bp@alien8.de \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-toolchains@vger.kernel.org \ --cc=matz@suse.de \ --cc=rguenther@suse.de \ --subject='Re: older gccs and case labels producing integer constants' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.