[compiler-rt] r201154 - [asan] Fix Windows build.
Evgeniy Stepanov
eugeni.stepanov at gmail.com
Tue Feb 11 05:57:18 PST 2014
Author: eugenis
Date: Tue Feb 11 07:57:17 2014
New Revision: 201154
URL: http://llvm.org/viewvc/llvm-project?rev=201154&view=rev
Log:
[asan] Fix Windows build.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc?rev=201154&r1=201153&r2=201154&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_win.cc Tue Feb 11 07:57:17 2014
@@ -430,6 +430,11 @@ void StackTrace::SlowUnwindStack(uptr pc
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
More information about the llvm-commits
mailing list