From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18894 invoked by alias); 20 Dec 2015 15:45:55 -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 18877 invoked by uid 89); 20 Dec 2015 15:45:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=marker2, fom, Hx-languages-length:682 X-HELO: mail-qg0-f52.google.com Received: from mail-qg0-f52.google.com (HELO mail-qg0-f52.google.com) (209.85.192.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 20 Dec 2015 15:45:53 +0000 Received: by mail-qg0-f52.google.com with SMTP id o11so12713662qge.2 for ; Sun, 20 Dec 2015 07:45:52 -0800 (PST) X-Received: by 10.140.153.73 with SMTP id 70mr20463329qhz.30.1450626350813; Sun, 20 Dec 2015 07:45:50 -0800 (PST) MIME-Version: 1.0 Received: by 10.55.159.151 with HTTP; Sun, 20 Dec 2015 07:45:21 -0800 (PST) In-Reply-To: <20151220050832.GB4639@adacore.com> References: <1450567845-27030-1-git-send-email-simon.marchi@polymtl.ca> <1450567845-27030-3-git-send-email-simon.marchi@polymtl.ca> <20151220050832.GB4639@adacore.com> From: Simon Marchi Date: Sun, 20 Dec 2015 15:45:00 -0000 Message-ID: Subject: Re: [PATCH 3/3] Remove HP-UX references fom testsuite To: Joel Brobecker Cc: gdb-patches@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-12/txt/msg00406.txt.bz2 On 20 December 2015 at 00:08, Joel Brobecker wrote: > There is a discrepancy I do not understand, here. You removed the $proto > suffix for marker2. proto is empty unless hp_aCC_compiler is non-zero. > I assume that HP ACC is only available on HP-UX, which means it's OK > to remove it here, but then why not remove... > > if {$hp_aCC_compiler} { > set proto "\\(int\\)" > } else { > set proto "" > } > > ... earlier in the test, and all references to proto? Oh, I actually removed it in 2/3 (references to CC/aCC compilers). I had left out this $proto by mistake. I updated 2/3 to remove it. Thanks!