For obj-c stage-final re-use the checksum from the previous stage
[official-gcc.git] / libsanitizer / hwasan / hwasan_poisoning.h
blob61751f7d252e9028dba2c86c024f1544aca7b631
1 //===-- hwasan_poisoning.h --------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file is a part of HWAddressSanitizer.
11 //===----------------------------------------------------------------------===//
13 #ifndef HWASAN_POISONING_H
14 #define HWASAN_POISONING_H
16 #include "hwasan.h"
18 namespace __hwasan {
19 uptr TagMemory(uptr p, uptr size, tag_t tag);
20 uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);
22 } // namespace __hwasan
24 #endif // HWASAN_POISONING_H