From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18700 invoked by alias); 24 Sep 2013 17:26:12 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 18690 invoked by uid 89); 24 Sep 2013 17:26:11 -0000 Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 24 Sep 2013 17:26:11 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 X-HELO: rock.gnat.com Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 60E3C116367; Tue, 24 Sep 2013 13:26:25 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MgaET3eIdwou; Tue, 24 Sep 2013 13:26:25 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 0A2FB116359; Tue, 24 Sep 2013 13:26:25 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 593BAE0314; Tue, 24 Sep 2013 10:26:07 -0700 (PDT) Date: Tue, 24 Sep 2013 17:26:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Pierre Muller Subject: fixed ChangeLog: [commit 1/4] Reimplement function calls on amd64-windows Message-ID: <20130924172607.GA19735@adacore.com> References: <20130920232017.GU3132@adacore.com> <1380040404-16932-1-git-send-email-brobecker@adacore.com> <1380040404-16932-2-git-send-email-brobecker@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1380040404-16932-2-git-send-email-brobecker@adacore.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-09/txt/msg00874.txt.bz2 > gdb/ChangeLog: > > * amd64-tdep.c: #include "value.h" > (amd64_windows_classify): Delete. Ooops, Pierre correctly pointed out privately that the name of the file in the ChangeLog was incorrect. I just checked in a change. It now reads: * amd64-windows-tdep.c: #include "value.h" (amd64_windows_classify): Delete. (amd64_windows_passed_by_integer_register) (amd64_windows_passed_by_xmm_register) (amd64_windows_passed_by_pointer) (amd64_windows_adjust_args_passed_by_pointer) (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments) (amd64_windows_push_dummy_call): New functions. (amd64_windows_init_abi): Remove setting of tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs, tdep->classify, tdep->memory_args_by_pointer and tdep->integer_param_regs_saved_in_caller_frame. Add call to set_gdbarch_push_dummy_call. Thank you, Pierre! -- Joel