forked from OSchip/llvm-project
22 lines
684 B
C++
22 lines
684 B
C++
//===-- asan_report.h -------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
//
|
|
// ASan-private header for error reporting functions.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "asan_internal.h"
|
|
|
|
namespace __asan {
|
|
|
|
void ReportSIGSEGV(uptr pc, uptr sp, uptr bp, uptr addr);
|
|
|
|
} // namespace __asan
|