From patchwork Wed Jan 22 21:23:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Tobler X-Patchwork-Id: 1227432 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-518075-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=fgznet.ch Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.a=rsa-sha1 header.s=default header.b=OFfg32H3; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 482z0s02Y7z9s1x for ; Thu, 23 Jan 2020 08:23:38 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=LjNWn/vVFBsQuskM o2COCP44RKKNLE2bwu4m77bD9VM81mXulCh1TsAJoQNbIYTfchqRexYgwDPi1LVT WSCZ1ZwVVmU3bIaUlacdIy8XHggVFALF/Nvb5CTyWcq8Z5cmsxZG5OSH34CAn8+6 mcXrWxODhRIHJIcHMNvYj5gwYkA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; s=default; bh=SGBss0vMGxgB8lv5CQ9Z7D Gz+44=; b=OFfg32H3md2K5955k6xubkOPiVZdplahwoPe72w3GpU+4jEPbO5qov 6NOj9nLd5MhoZ44EAwmxBtnqcbcwncQshHZbUX6lNShT9p8enpOLTolqpttMwCLy gtoXqwmh7DjFzNqTwfAQrLEb6WnQhF0Ysu5Sa2ubFzbada2tsHLvU= Received: (qmail 15186 invoked by alias); 22 Jan 2020 21:23:31 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 15176 invoked by uid 89); 22 Jan 2020 21:23:31 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-14.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=H*F:D*ch, H*Ad:D*ch, H*UA:Macintosh, H*u:Macintosh X-HELO: smtp.fgznet.ch Received: from smtp.fgznet.ch (HELO smtp.fgznet.ch) (157.161.14.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 22 Jan 2020 21:23:29 +0000 Received: from [192.168.225.14] (dhclient-91-190-10-49.flashcable.ch [91.190.10.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by fgznet.ch (Postfix) with ESMTPSA id A7E8FC11F1 for ; Wed, 22 Jan 2020 22:23:26 +0100 (CET) To: GCC Patches From: Andreas Tobler Subject: [PATCH] libsanitizer: Add missign file and regen Makefile.in Message-ID: <028270d0-20f0-7037-3b28-dbcc3d93f0cb@fgznet.ch> Date: Wed, 22 Jan 2020 22:23:23 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:68.0) Gecko/20100101 Thunderbird/68.3.0 MIME-Version: 1.0 X-IsSubscribed: yes Hi all, I'm digginig out old patches and I want to complete the libasan support for FreeBSD x86_64. The below one was not that obvious when you have been away for the past years. In the last import the sanitizer_platform_limits_freebsd.cpp got forgotten. Fix this. Ok for trunk once it's open again? Thanks, Andreas libsanitizer/sanitizer_common: * Makefile.am: Add sanitizer_platform_limits_freebsd.cpp. * makefile.in: Regenerate diff --git a/libsanitizer/sanitizer_common/Makefile.am b/libsanitizer/sanitizer_ common/Makefile.am index df9c294151d..9653f27c09f 100644 --- a/libsanitizer/sanitizer_common/Makefile.am +++ b/libsanitizer/sanitizer_common/Makefile.am @@ -44,6 +44,7 @@ sanitizer_common_files = \ sanitizer_netbsd.cpp \ sanitizer_openbsd.cpp \ sanitizer_persistent_allocator.cpp \ + sanitizer_platform_limits_freebsd.cpp \ sanitizer_platform_limits_linux.cpp \ sanitizer_platform_limits_openbsd.cpp \ sanitizer_platform_limits_posix.cpp \