From patchwork Fri Jun 6 22:43:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 1362 Received: (qmail 25780 invoked by alias); 6 Jun 2014 22:43:47 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 25763 invoked by uid 89); 6 Jun 2014 22:43:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ob0-f202.google.com Received: from mail-ob0-f202.google.com (HELO mail-ob0-f202.google.com) (209.85.214.202) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 06 Jun 2014 22:43:45 +0000 Received: by mail-ob0-f202.google.com with SMTP id wm4so744232obc.5 for ; Fri, 06 Jun 2014 15:43:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:message-id:from:to:subject; bh=9AaPOhmDylYqDitx/0DgPR60o4mOq2XDYoXGvYs7J4g=; b=eMlRpIlyy3T96yI8QfW+riJKc06nbAA4K5Q3Wjg8yFM/cPuONsniK6hDAd7+xMJL2f yemuNTIWulOzfyFrFSBjlxzODaVII9rBi5+66jjOP8xd0aX9voqooHUe3edH8etSa1Fi 7VZApgVlkJ2h5rrH9n0KMMLZz6TcwXCAp5/DgEwMMmhX1x/vZ5g28Dc+0g4o0GOBgUNb AdRrptbj5KkQKIt3Eon9zy+E9o6N0SUa+hTDl1kJDRBRWssevVpgL57e533Hr7FOrmo7 rPTrYj+MqkW9S40Yyia04bBlqeNqlpf8xW+49Vx1wHZ28g7jS8zrHprl78DKrhDshekf uXxg== X-Gm-Message-State: ALoCoQmd9YpX6CkneSeRuukdoPc2cXxiISIxVPZ0AdaVS1BmFvrfhvtJLg0EQu0oUKE2jnlZct/Hmt3YrnJTRudbJre+dI7umAans9Q6ZERwGBV58VBYo3Sg3OvnPC1astuD9HZxzXQV X-Received: by 10.182.226.166 with SMTP id rt6mr4488896obc.47.1402094623586; Fri, 06 Jun 2014 15:43:43 -0700 (PDT) Received: from corp2gmr1-1.hot.corp.google.com (corp2gmr1-1.hot.corp.google.com [172.24.189.92]) by gmr-mx.google.com with ESMTPS id xn6si754444vdc.2.2014.06.06.15.43.43 for (version=TLSv1.1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 06 Jun 2014 15:43:43 -0700 (PDT) Received: from ruffy2.mtv.corp.google.com (ruffy2.mtv.corp.google.com [172.17.128.107]) by corp2gmr1-1.hot.corp.google.com (Postfix) with ESMTP id 19F0231C615 for ; Fri, 6 Jun 2014 15:43:42 -0700 (PDT) Date: Fri, 06 Jun 2014 15:43:42 -0700 Message-Id: From: Doug Evans To: gdb-patches@sourceware.org Subject: [commit] gdb.guile/scm-frame-args.c (foo): Tweak to work with gcc 4.6.3. X-IsSubscribed: yes Hi. I was testing gdb with a gcc 4.6.3 variant and got a failure. This tweaks the test to pass. 2014-06-06 Doug Evans * gdb.guile/scm-frame-args.c (foo): Tweak to work with gcc 4.6.3. diff --git a/gdb/testsuite/gdb.guile/scm-frame-args.c b/gdb/testsuite/gdb.guile/scm-frame-args.c index c20b1e1..ca76c28 100644 --- a/gdb/testsuite/gdb.guile/scm-frame-args.c +++ b/gdb/testsuite/gdb.guile/scm-frame-args.c @@ -44,7 +44,7 @@ init_ss (struct ss *s, int a, int b) void foo (int x, struct ss ss) { - return; /* break-here */ + x = ss.a.m; /* break-here */ } int