public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Tom de Vries <vries@sourceware.org>
To: gdb-cvs@sourceware.org
Subject: [binutils-gdb] [gdb/testsuite] Fix gdb.dwarf2/dw2-unspecified-type-foo.c with -m32
Date: Mon, 26 Sep 2022 11:43:45 +0000 (GMT)	[thread overview]
Message-ID: <20220926114345.910F53858D32@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=757b1c20d49438a19cb3bfd5ce5db20f40ce4e21

commit 757b1c20d49438a19cb3bfd5ce5db20f40ce4e21
Author: Tom de Vries <tdevries@suse.de>
Date:   Mon Sep 26 13:43:42 2022 +0200

    [gdb/testsuite] Fix gdb.dwarf2/dw2-unspecified-type-foo.c with -m32
    
    When running test-case gdb.dwarf2/dw2-unspecified-type-foo.c with target board
    unix/-m32, I run into:
    ...
    (gdb) PASS: gdb.dwarf2/dw2-unspecified-type.exp: ptype foo
    p ((int (*) ()) foo) ()^M
    $1 = -135698472^M
    ...
    
    Add the missing "return 0" in foo, which fixes this.
    
    Tested on x86_64-linux.

Diff:
---
 gdb/testsuite/gdb.dwarf2/dw2-unspecified-type-foo.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gdb/testsuite/gdb.dwarf2/dw2-unspecified-type-foo.c b/gdb/testsuite/gdb.dwarf2/dw2-unspecified-type-foo.c
index b1e3a8b98e4..c92e18b898f 100644
--- a/gdb/testsuite/gdb.dwarf2/dw2-unspecified-type-foo.c
+++ b/gdb/testsuite/gdb.dwarf2/dw2-unspecified-type-foo.c
@@ -19,4 +19,5 @@ int
 foo (void)
 {
   asm ("foo_label: .globl foo_label");
+  return 0;
 }

                 reply	other threads:[~2022-09-26 11:43 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20220926114345.910F53858D32@sourceware.org \
    --to=vries@sourceware.org \
    --cc=gdb-cvs@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).