diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-02-11 13:57:17 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-02-11 13:57:17 +0000 |
commit | e5a447d947ebbd622757fb19e424c0ee5445bbcb (patch) | |
tree | 7112a6b0992c3c4f4541303951fe171a1d26893d | |
parent | 3fb0a9cc6f2f534f1a0c9c8ba9bc2066af34e025 (diff) | |
download | bcm5719-llvm-e5a447d947ebbd622757fb19e424c0ee5445bbcb.tar.gz bcm5719-llvm-e5a447d947ebbd622757fb19e424c0ee5445bbcb.zip |
[asan] Fix Windows build.
llvm-svn: 201154
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index dad10608747..162f37ddce2 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -430,6 +430,11 @@ void StackTrace::SlowUnwindStack(uptr pc, uptr max_depth) { PopStackFrames(pc_location); } +void StackTrace::SlowUnwindStackWithContext(uptr pc, void *context, + uptr max_depth) { + UNREACHABLE("no signal context on windows"); +} + void MaybeOpenReportFile() { // Windows doesn't have native fork, and we don't support Cygwin or other // environments that try to fake it, so the initial report_fd will always be |