From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25357 invoked by alias); 23 Jul 2003 18:56:52 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 25350 invoked from network); 23 Jul 2003 18:56:51 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 23 Jul 2003 18:56:51 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu-dmz.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h6NIupH21148 for ; Wed, 23 Jul 2003 14:56:51 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h6NIuoS21652 for ; Wed, 23 Jul 2003 14:56:50 -0400 Received: from redhat.com (reddwarf.sfbay.redhat.com [172.16.24.50]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id h6NIunK08229 for ; Wed, 23 Jul 2003 11:56:49 -0700 Message-ID: <3F1EDA71.1090602@redhat.com> Date: Wed, 23 Jul 2003 18:56:00 -0000 From: Michael Snyder User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [PATCH] don't test long long return on h8 Content-Type: multipart/mixed; boundary="------------050600040501010208030801" X-SW-Source: 2003-07/txt/msg00410.txt.bz2 This is a multi-part message in MIME format. --------------050600040501010208030801 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 84 long long is returned like a struct on h8 (by reference), and gdb can't do that. --------------050600040501010208030801 Content-Type: text/plain; name="tmp" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="tmp" Content-length: 866 2003-07-23 Michael Snyder * gdb.base/return2.exp: Don't test long-long return. Index: gdb.base/return2.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/return2.exp,v retrieving revision 1.3 diff -p -r1.3 return2.exp *** gdb.base/return2.exp 16 Jul 2001 18:49:43 -0000 1.3 --- gdb.base/return2.exp 23 Jul 2003 18:53:02 -0000 *************** proc return2_tests { } { *** 109,115 **** return_1 "short" return_1 "int" return_1 "long" ! if { ! [istarget "m6811-*-*"] } then { return_1 "long_long" } return_1 "float" --- 109,115 ---- return_1 "short" return_1 "int" return_1 "long" ! if { ! [istarget "m6811-*-*"] && ![istarget "h8300*-*"] } then { return_1 "long_long" } return_1 "float" --------------050600040501010208030801--