From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9051 invoked by alias); 8 Jul 2015 10:55:30 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 9035 invoked by uid 89); 8 Jul 2015 10:55:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 08 Jul 2015 10:55:28 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56731) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1ZCn0g-0006u3-CT for gcc-patches@gnu.org; Wed, 08 Jul 2015 06:55:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCn0f-0006F0-Ax for gcc-patches@gnu.org; Wed, 08 Jul 2015 06:55:25 -0400 Received: from mail-ob0-x236.google.com ([2607:f8b0:4003:c01::236]:34283) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCn0f-0006Em-6T for gcc-patches@gnu.org; Wed, 08 Jul 2015 06:55:25 -0400 Received: by obbkm3 with SMTP id km3so147661598obb.1 for ; Wed, 08 Jul 2015 03:55:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=cq+6cI7DlwXtkSD0rNsdIgWb8ByZWX3vzqyEW2Fx430=; b=DX++HgvnppclV9UvwIRaBfM/HvyA8+YDqpHSrhQFcu7QPOu5HaPunGZGjsxF7XmLKz 9Bp5L9J0J/Olxke4+8IqXn7dOfSe/uzpJZSEvRukRssB6DTPq5vLvuxMuXGidYlYJJ7N 3knfc5OiO+G9ocucCgWKl69H9hdO0GaboczQp+4x5Rko9ZfYukBCG/aS7siaWyJKzm71 uZO0NrxrVP/KvW8YtFc4qMvE3E6xO7FIGVjJLBDx8x4tF9Fstrq3pP7m/jul9x5oZIt2 +BobXB63gLCiCzGrL1PdXFiRkFUQgyZ1w8cOCiSW8/PAtVQB0J1vjxrzrxAvU8ToUHHN 1lJg== X-Gm-Message-State: ALoCoQkY+jum9E4n9rZbBaI1U9XGCHVkLa8916PShGBpC6lFHxh866udOC4+wys+ZgpJsMNzN8NZ MIME-Version: 1.0 X-Received: by 10.60.177.195 with SMTP id cs3mr1929666oec.37.1436352924606; Wed, 08 Jul 2015 03:55:24 -0700 (PDT) Received: by 10.60.80.6 with HTTP; Wed, 8 Jul 2015 03:55:24 -0700 (PDT) In-Reply-To: <559C5547.2020700@redhat.com> References: <559AD66D.1070809@gmail.com> <559AD84C.6080106@gmail.com> <559C5547.2020700@redhat.com> Date: Wed, 08 Jul 2015 10:55:00 -0000 Message-ID: Subject: Re: [PATCH 3/7] Fix trinary op From: Ian Lance Taylor To: Jeff Law Cc: Mikhail Maltsev , gcc-patches , Jason Merrill Content-Type: text/plain; charset=UTF-8 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c01::236 X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00584.txt.bz2 On Tue, Jul 7, 2015 at 3:40 PM, Jeff Law wrote: > > And a generic question on the testsuite -- presumably it turns on type > demangling? I wanted to verify the flow through d_expression_1 was what I > expected it to be and it took a while to realize that c++filt doesn't > demangle types by default, thus Av32_f would demangle to Av32_f without ever > getting into d_expression_1. The testsuite passes DMGL_TYPES to the demangler (see libiberty/testsuite/test-demangle.c). The c++filt program does not use DMGL_TYPES by defaut (you can turn it on with the -t option). I don't know of anybody who actually uses the DMGL_TYPES support. I don't know why anybody would. Ian