]> git.ipfire.org Git - thirdparty/gcc.git/blob - libsanitizer/sanitizer_common/sanitizer_win.h
ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins...
[thirdparty/gcc.git] / libsanitizer / sanitizer_common / sanitizer_win.h
1 //===-- sanitizer_win.h -----------------------------------------*- C++ -*-===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // Windows-specific declarations.
9 //
10 //===----------------------------------------------------------------------===//
11 #ifndef SANITIZER_WIN_H
12 #define SANITIZER_WIN_H
13
14 #include "sanitizer_platform.h"
15 #if SANITIZER_WINDOWS
16 #include "sanitizer_internal_defs.h"
17
18 namespace __sanitizer {
19 // Check based on flags if we should handle the exception.
20 bool IsHandledDeadlyException(DWORD exceptionCode);
21 } // namespace __sanitizer
22
23 #endif // SANITIZER_WINDOWS
24 #endif // SANITIZER_WIN_H