Dump the process memory map if any of the mappings interleaves with the shadow.

llvm-svn: 151141
This commit is contained in:
Alexander Potapenko 2012-02-22 08:27:32 +00:00
parent e6664762ec
commit c259ab3cac
1 changed files with 2 additions and 0 deletions

View File

@ -490,6 +490,8 @@ void __asan_init() {
} else {
Report("Shadow memory range interleaves with an existing memory mapping. "
"ASan cannot proceed correctly. ABORTING.\n");
AsanProcMaps proc_maps;
proc_maps.Dump();
AsanDie();
}