From owner-freebsd-toolchain@freebsd.org Sun Nov 22 04:26:22 2020 Return-Path: Delivered-To: freebsd-toolchain@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0CA0647C3A6 for ; Sun, 22 Nov 2020 04:26:22 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cdy0F6rWZz4XVB for ; Sun, 22 Nov 2020 04:26:21 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f181.google.com (mail-qt1-f181.google.com [209.85.160.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id D8A1E1277 for ; Sun, 22 Nov 2020 04:26:21 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f181.google.com with SMTP id f15so6906537qto.13 for ; Sat, 21 Nov 2020 20:26:21 -0800 (PST) X-Gm-Message-State: AOAM531vzBnydnTbP0dyKYhZ3wsYvgkBaMwD8Q3a86EpAgvF+/+eSUdp 4t8/ZVmyJ21pnLC3A/57XMobQPxkF/XnX7cDm/M= X-Google-Smtp-Source: ABdhPJzZQ+zwH+0Z8LE5xA5pUYsbtmZp7pvJ9RIJVoioY347CFx8G/kPAgHS3xUG6CvlEdTpjr9knRLJ1J4rDLPIcWE= X-Received: by 2002:ac8:4897:: with SMTP id i23mr21898600qtq.211.1606019181471; Sat, 21 Nov 2020 20:26:21 -0800 (PST) MIME-Version: 1.0 From: Kyle Evans Date: Sat, 21 Nov 2020 22:26:10 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Remove ftime() interceptor defs from compiler-rt/FreeBSD To: FreeBSD Toolchain Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Nov 2020 04:26:22 -0000 Hi, Can we remove the ftime() interceptor definitions that are FreeBSD specific in compiler-rt? See: https://people.freebsd.org/~kevans/intercept.diff -- the very act of including sys/timeb.h adds build noise from the warning about it being deprecated, when ftime() is apparently not even intercepted on FreeBSD: #define SANITIZER_INTERCEPT_FTIME \ (!SI_FREEBSD && !SI_NETBSD && !SI_OPENBSD && SI_POSIX) Thanks, Kyle Evans