forked from OSchip/llvm-project
[sanitizer] Fix Fuchsia bot failure
Fixes bot failure from 4d5b1de40eccc7ffcfb859cef407e5f30bee77f8: https://luci-milo.appspot.com/p/fuchsia/builders/ci/clang-linux-x64/b8867057367989385504 Updates the version of RenderFrame used by Fuchsia and adds a version of the new RenderNeedsSymbolization.
This commit is contained in:
parent
a15bd0bfc2
commit
f775cb8994
|
@ -83,11 +83,14 @@ void RenderData(InternalScopedString *buffer, const char *format,
|
|||
buffer->append(kFormatData, DI->start);
|
||||
}
|
||||
|
||||
bool RenderNeedsSymbolization(const char *format) { return false; }
|
||||
|
||||
// We don't support the stack_trace_format flag at all.
|
||||
void RenderFrame(InternalScopedString *buffer, const char *format, int frame_no,
|
||||
const AddressInfo &info, bool vs_style,
|
||||
uptr address, const AddressInfo *info, bool vs_style,
|
||||
const char *strip_path_prefix, const char *strip_func_prefix) {
|
||||
buffer->append(kFormatFrame, frame_no, info.address);
|
||||
CHECK(!RenderNeedsSymbolization(format));
|
||||
buffer->append(kFormatFrame, frame_no, address);
|
||||
}
|
||||
|
||||
Symbolizer *Symbolizer::PlatformInit() {
|
||||
|
|
Loading…
Reference in New Issue