From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 67466 invoked by alias); 2 Nov 2017 10:16:09 -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 65499 invoked by uid 89); 2 Nov 2017 10:15:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-languages-length:588, harmless, H*r:sk:static., management X-HELO: mail-wm0-f45.google.com Received: from mail-wm0-f45.google.com (HELO mail-wm0-f45.google.com) (74.125.82.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 02 Nov 2017 10:15:58 +0000 Received: by mail-wm0-f45.google.com with SMTP id y83so10084679wmc.4 for ; Thu, 02 Nov 2017 03:15:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=QhKtXRFEojGWqMhuv0+HhmkNqCURz0GEvVmCR/TZH3U=; b=Fb4FKHsyPpQnUKbic3BTZ+Vy2lZDj1qvl9z9XfAur2JyaM8rcq1OR3LRkf9oSOD/1S KoTMcnSV+uvTnUB1T3oJC1khGf8q3biU9zv9KWLIrhLqxl0IEwgu4yppt+dzkxgQKOtt nWPVuQzi7BDkK3hIovxbs0DIhmINf9CWyAqiqQouXxFsq7ZzkmhsJ4ftER9ksayw8z9j X6nmHEgIl97gw0abL/+9KTm7yzlxec1CWA+6d9NTn0uTrXhNp0GHTA8tXtNo5HfSBc0l OsjnsxzZ8UmZXQJII0u2Xpo2Up7nQgosBCYWC+1+4Pntvb4WBsIq7mGoTZUeFma1Z7z4 05FA== X-Gm-Message-State: AMCzsaWwQxt0hySxKQIgYgXOtiGJsyu4aGhRR0FQaDHRUrbLhmh/C8AH xqwxkcj3YZy5HS9OvCYsuk8Ldw== X-Google-Smtp-Source: ABhQp+TRG7g29SnMXtrVx90f3IQcAYLBIk5PvE8ALwGhJjj0MSBgOhO0u0ikjTXp5JrbuLK1phuMtA== X-Received: by 10.28.142.85 with SMTP id q82mr1114024wmd.155.1509617756314; Thu, 02 Nov 2017 03:15:56 -0700 (PDT) Received: from E107787-LIN (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id s196sm2337166wmb.26.2017.11.02.03.15.55 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 02 Nov 2017 03:15:55 -0700 (PDT) From: Yao Qi To: Simon Marchi Cc: Subject: Re: [PATCH 00/10] Use std::vector and std::string throughout target-descriptions.c References: <1509414120-14659-1-git-send-email-simon.marchi@ericsson.com> Date: Thu, 02 Nov 2017 10:16:00 -0000 In-Reply-To: <1509414120-14659-1-git-send-email-simon.marchi@ericsson.com> (Simon Marchi's message of "Mon, 30 Oct 2017 21:41:50 -0400") Message-ID: <86r2thvvdy.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-11/txt/msg00025.txt.bz2 Simon Marchi writes: > This patch series replaces VECs with std::vector and char* with std::stri= ng in > the tdesc classes. The objective is to remove the usage of VECs and the = manual > memory management. The whole series was tested on the buildbot. At each= step, > I tried to re-generate the C target descriptions. Only one patch causes a > visible change, which is harmless I think. I go through all of them. Patches I don't give comments look good to me. --=20 Yao (=E9=BD=90=E5=B0=A7)