From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8B3ED385843A; Wed, 6 Mar 2024 03:03:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8B3ED385843A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1709694197; bh=sC2x+IqpuB4SKlqfN8F5z0H1CxA/gpVYwuPhYjcJyW0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=NK9EF3bvE0ji/RvAVs+LPcKIJ4hcIK08MX+1UYE/HZBTR2BF23QKXzzNENdBzpLvS BYI3imMVBHIwjE1cBMzGhvB/ZuaLYDfYwG0JJyqEjbDSkM7n/7cSKmXxUCmM7Z3MQU j2YZ/LLW6/jL0ZlHCHz0l1dhJECJ61rbYmUChnwQ= From: "sjames at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/114249] [14 regression] ICE when building lvm2-2.03.22 (error: invalid types in nop conversion) Date: Wed, 06 Mar 2024 03:03:16 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: sjames at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D114249 --- Comment #2 from Sam James --- Reduced: ``` enum { SEG_THIN_POOL } read_only; struct { unsigned skip_block_zeroing; unsigned ignore_discard; unsigned no_discard_passdown; unsigned error_if_no_space; } _thin_pool_emit_segment_line_seg; void dm_snprintf(); void _emit_segment() { int features =3D (_thin_pool_emit_segment_line_seg.error_if_no_space ? 1 : 0) + (read_only ? 1 : 0) + (_thin_pool_emit_segment_line_seg.ignore_discard ? 1 : 0) + (_thin_pool_emit_segment_line_seg.no_discard_passdown ? 1 : 0) + (_thin_pool_emit_segment_line_seg.skip_block_zeroing ? 1 : 0); dm_snprintf(features); } ```=