[AArch64] Fix SDNode type mismatches between *.td files and ISel (#116523)
[llvm-project.git] / compiler-rt / lib / msan / msan_dl.h
blobc0105ac3c600aadeb7479fc2f3ba83eeb73bb257
1 //===-- msan_dl.h ---------------------------------------------------------===//
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 MemorySanitizer.
11 // Helper functions for unpoisoning results of dladdr and dladdr1.
12 //===----------------------------------------------------------------------===//
14 #ifndef MSAN_DL_H
15 #define MSAN_DL_H
17 #include "msan.h"
18 #include "sanitizer_common/sanitizer_common.h"
20 namespace __msan {
22 void UnpoisonDllAddrInfo(void *info);
24 #if SANITIZER_GLIBC
25 void UnpoisonDllAddr1ExtraInfo(void **extra_info, int flags);
26 #endif
28 } // namespace __msan
30 #endif // MSAN_DL_H