public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "hluaw at connect dot ust.hk" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug gdb/30278] New: gdb gives wrong value at -O1
Date: Mon, 27 Mar 2023 13:34:17 +0000	[thread overview]
Message-ID: <bug-30278-4717@http.sourceware.org/bugzilla/> (raw)

https://sourceware.org/bugzilla/show_bug.cgi?id=30278

            Bug ID: 30278
           Summary: gdb gives wrong value at -O1
           Product: gdb
           Version: HEAD
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: gdb
          Assignee: unassigned at sourceware dot org
          Reporter: hluaw at connect dot ust.hk
  Target Milestone: ---

Environment:
$ gcc --version
gcc (Gentoo 11.3.1_p20221209 p3) 11.3.1 20221209
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ gdb --version
GNU gdb (GDB) 14.0.50.20230327-git
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Code:
int c ;
int func_8() {
  int i = 0;
  for (; i < 8; i++)
    ;
  if ((c = 0))
    ;
  return c;
}
int main() { func_8(); }

Command to reproduce:
b func_8
r
p i

gdb Output:
func_8 () at r.c:6
6         if ((c = 0))
(gdb) p i
$1 = 0

Expected result is `i = 8`, which happens right after line 6.
I tend to think gdb should report `i = 8` at line 6 instead of line 8.
In fact, when the for-loop is followed by other statement rather than the if
here, gdb can correctly report `i = 8` on line 6.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

             reply	other threads:[~2023-03-27 13:34 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-27 13:34 hluaw at connect dot ust.hk [this message]
2023-03-27 14:50 ` [Bug gdb/30278] " tromey at sourceware dot org
2023-03-27 14:59 ` tromey at sourceware dot org
2023-03-27 15:42 ` ssbssa at sourceware dot org
2023-03-27 20:48 ` tromey at sourceware dot org

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=bug-30278-4717@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=gdb-prs@sourceware.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).