From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 7BE72383B6B2 for ; Tue, 6 Dec 2022 18:37:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7BE72383B6B2 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1670351870; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=pPGDkuMpUGOX23F0jgUj8nvoHEHZ6oh5I2hEsDwa8CI=; b=L2cZAtXLDUE+vvt9tgqQBzQqWPPWrrM/7yK7khYxH5c1khNNEe5ncKyE1lNUgr9lCL8ERq YHxr0bJmwi/V6wid0Zf9v+c7HYP/rrt9x1EAEZo4MsWSMX17q5PbRTb5+IJStmdMzdHGGy 5ioE81zt2Dr8S9/FKvKhq+Xonuld6/8= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-60-idAxcVk7OW2IoJcbaRvSkA-1; Tue, 06 Dec 2022 13:37:47 -0500 X-MC-Unique: idAxcVk7OW2IoJcbaRvSkA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B3F721C06921 for ; Tue, 6 Dec 2022 18:37:46 +0000 (UTC) Received: from t14s.localdomain.com (unknown [10.2.17.99]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8CD5A7AE5; Tue, 6 Dec 2022 18:37:46 +0000 (UTC) From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [committed] contrib: doxygen: add gcc/analyzer subdirectory to INPUT Date: Tue, 6 Dec 2022 13:37:43 -0500 Message-Id: <20221206183743.4095884-1-dmalcolm@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Lightly tested with doxygen; with this patch it generates docs for the analyzer internals (e.g. class hierarchies). Pushed to trunk as r13-4519-gfa19bfbb0a1995. contrib/ChangeLog: * gcc.doxy (INPUT): Add gcc/analyzer subdirectory. Signed-off-by: David Malcolm --- contrib/gcc.doxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gcc.doxy b/contrib/gcc.doxy index a8eeb03c9a0..9e0a1af0e20 100644 --- a/contrib/gcc.doxy +++ b/contrib/gcc.doxy @@ -478,7 +478,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = gcc +INPUT = gcc gcc/analyzer # This tag can be used to specify the character encoding of the source files that # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default -- 2.26.3