From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E4E593858D37; Sat, 13 Jan 2024 14:54:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E4E593858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1705157694; bh=FRdrqUKZbzsbxyj8P65ofFRnc3lfvu0qUnoft/03MXo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=pJpi7+etCJwiAlWyBXrujhasUCHfaENFoYgS3qucndABh9BTKaOsrRLABMtNhtOzf 8h5KhU2CwWZiV0PPkiTjUzZYJJXMjt+MNRp5B7aisH73iU6QUA0rcO/HPBcVMStEE2 blOc+KIoBHqEx7cOgK0SD3X5AXbMor58j6ndGCYg= From: "vries at gcc dot gnu.org" To: gdb-prs@sourceware.org Subject: [Bug gdb/31237] [gdb, clang] FAIL: gdb.gdb/index-file.exp: gdb-index files are identical Date: Sat, 13 Jan 2024 14:54:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: gdb X-Bugzilla-Version: HEAD X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- 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://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D31237 --- Comment #4 from Tom de Vries --- Hmm, there's an actual difference in the address table: ... $ grep " 122$" 1 | sort -d 000000000043ac80 000000000043ad48 122 00000000006bbeb0 00000000006bd024 122 00000000028d4aa8 00000000028d4aa9 122 00000000028d4b50 00000000028d4b51 122 0000000002b74880 0000000002b74881 122 0000000002b74888 0000000002b74889 122 $ grep " 122$" 2 | sort -d 00000000006bbeb0 00000000006bd024 122 00000000028d4aa8 00000000028d4aa9 122 00000000028d4b50 00000000028d4b51 122 0000000002b74880 0000000002b74881 122 0000000002b74888 0000000002b74889 122 ... The first element of 1 is extra, the rest of the entries is equal. Let's grep for the starting address of the extra element:=20 ... $ grep 43ac80 1 000000000043ac80 000000000043ad48 122 000000000043ac80 000000000043ace8 244 000000000043ac80 000000000043b1c4 490 000000000043ac80 000000000043ad48 600 $ grep 43ac80 2 000000000043ac80 000000000043ace8 244 000000000043ac80 000000000043b1c4 490 ... So, for a given address 0x43ac80 there is a number of CUs that match, and t= he number is different between the two address tables. --=20 You are receiving this mail because: You are on the CC list for the bug.=