| //===-- Safe nullptr check --------------------------------------*- 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 |
| //===----------------------------------------------------------------------===// |
| #ifndef LLVM_LIBC_SRC___SUPPORT_MACROS_NULL_CHECK_H |
| #define LLVM_LIBC_SRC___SUPPORT_MACROS_NULL_CHECK_H |
| #include "src/__support/macros/config.h" |
| #include "src/__support/macros/optimization.h" |
| #include "src/__support/macros/sanitizer.h" |
| #if defined(LIBC_ADD_NULL_CHECKS) && !defined(LIBC_HAS_SANITIZER) |
| #define LIBC_CRASH_ON_NULLPTR(ptr) \ |
| if (LIBC_UNLIKELY((ptr) == nullptr)) \ |
| #define LIBC_CRASH_ON_NULLPTR(ptr) \ |
| #endif // LLVM_LIBC_SRC___SUPPORT_MACROS_NULL_CHECK_H |