forked from OSchip/llvm-project
[msan] Change wording in the invalid origin message.
llvm-svn: 193335
This commit is contained in:
parent
2f0a712e18
commit
f2fd459a5b
|
@ -218,9 +218,10 @@ void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin) {
|
|||
ReportUMR(&stack, report_origin);
|
||||
|
||||
if (__msan_get_track_origins() && !OriginIsValid(origin)) {
|
||||
Printf(" ORIGIN: invalid (%x). Might be a bug in MemorySanitizer, "
|
||||
"please report to MemorySanitizer developers.\n",
|
||||
origin);
|
||||
Printf(
|
||||
" ORIGIN: invalid (%x). Might be a bug in MemorySanitizer origin "
|
||||
"tracking.\n This could still be a bug in your code, too!\n",
|
||||
origin);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue