summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2013-11-09 15:01:23 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2013-11-09 15:01:23 +0000
commit3366c5a79b2b5565602991d09b2bc4277e16ee84 (patch)
tree60ed549133cd596a6ea7d776f2eac20af533382a
parent7177d2bbb5850fb499d3e8910b2e05f5c6b025b0 (diff)
downloadcompiler-rt-3366c5a79b2b5565602991d09b2bc4277e16ee84.tar.gz
compiler-rt-3366c5a79b2b5565602991d09b2bc4277e16ee84.tar.bz2
compiler-rt-3366c5a79b2b5565602991d09b2bc4277e16ee84.tar.xz
Remove a FIXME now that I can't reproduce the problem
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@194331 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/sanitizer_common/sanitizer_win.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sanitizer_common/sanitizer_win.cc b/lib/sanitizer_common/sanitizer_win.cc
index 7d07a173..362c8c99 100644
--- a/lib/sanitizer_common/sanitizer_win.cc
+++ b/lib/sanitizer_common/sanitizer_win.cc
@@ -383,8 +383,6 @@ void StackTrace::SlowUnwindStack(uptr pc, uptr max_depth) {
size = CaptureStackBackTrace(2, Min(max_depth, kStackTraceMax),
(void**)trace, 0);
// Skip the RTL frames by searching for the PC in the stacktrace.
- // FIXME: this doesn't work well for the malloc/free stacks yet - consider
- // adjusting the pc_threshold.
uptr pc_location = LocatePcInTrace(pc);
PopStackFrames(pc_location);
}