See https://code.google.com/p/address-sanitizer/issues/detail?id=385.
llvm-svn: 233720
Decorator d;
Printf("%s", d.Warning());
- Report(" WARNING: MemorySanitizer: use-of-uninitialized-value\n");
+ Report("WARNING: MemorySanitizer: use-of-uninitialized-value\n");
Printf("%s", d.End());
stack->Print();
if (origin) {
void ReportExpectedUMRNotFound(StackTrace *stack) {
SpinMutexLock l(&CommonSanitizerReportMutex);
- Printf(" WARNING: Expected use of uninitialized value not found\n");
+ Printf("WARNING: Expected use of uninitialized value not found\n");
stack->Print();
}
coverage_dir, internal_getpid());
pc_fd = OpenFile(path.data(), RdWr);
if (internal_iserror(pc_fd)) {
- Report(" Coverage: failed to open %s for reading/writing\n", path.data());
+ Report("Coverage: failed to open %s for reading/writing\n", path.data());
Die();
}
}
uptr fd = OpenFile(path->data(), WrOnly);
if (internal_iserror(fd)) {
- Report(" SanitizerCoverage: failed to open %s for writing\n", path->data());
+ Report("SanitizerCoverage: failed to open %s for writing\n", path->data());
return -1;
}
return fd;
CHECK_LE(res, tmp_path.size());
uptr map_fd = OpenFile(tmp_path.data(), WrOnly);
if (internal_iserror(map_fd, &err)) {
- Report(" Coverage: failed to open %s for writing: %d\n", tmp_path.data(),
+ Report("Coverage: failed to open %s for writing: %d\n", tmp_path.data(),
err);
Die();
}