From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30595 invoked by alias); 11 Jun 2003 21:02:30 -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 30587 invoked from network); 11 Jun 2003 21:02:29 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 11 Jun 2003 21:02:29 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 4F5CE800043 for ; Wed, 11 Jun 2003 17:02:29 -0400 (EDT) Message-ID: <3EE798E5.50006@redhat.com> Date: Wed, 11 Jun 2003 21:02:00 -0000 From: "J. Johnston" Organization: Red Hat Inc. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA]: ia64 support for float.exp Content-Type: multipart/mixed; boundary="------------080503050808090602010600" X-SW-Source: 2003-06/txt/msg00386.txt.bz2 This is a multi-part message in MIME format. --------------080503050808090602010600 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 167 The following adds ia64 support to float.exp. Ok to commit? -- Jeff J. 2003-06-11 Jeff Johnston * gdb.base/float.exp: Add ia64 support. --------------080503050808090602010600 Content-Type: text/plain; name="float.exp.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="float.exp.patch" Content-length: 716 Index: float.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/float.exp,v retrieving revision 1.3 diff -u -r1.3 float.exp --- float.exp 2 Jun 2003 16:49:35 -0000 1.3 +++ float.exp 11 Jun 2003 20:50:02 -0000 @@ -59,6 +59,8 @@ gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float" } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } then { gdb_test "info float" "R7:.*Status Word:.*Opcode:.*" "info float" +} elseif [istarget "ia64-*-*"] then { + gdb_test "info float" "f0.*f1.*f127.*" "info float" } else { gdb_test "info float" "No floating.point info available for this processor." "info float" } --------------080503050808090602010600--