mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 18:56:06 +00:00

This is a follow up to [Sanitizers][Darwin] Rename Apple macro SANITIZER_MAC -> SANITIZER_APPLE (D125816) Performed a global search/replace as in title against LLVM sources Differential Revision: https://reviews.llvm.org/D126263
19 lines
641 B
C++
19 lines
641 B
C++
//===-- interception_mac.cpp ------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
//
|
|
// Mac-specific interception methods.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "interception.h"
|
|
|
|
#if SANITIZER_APPLE
|
|
|
|
#endif // SANITIZER_APPLE
|