[asan] update asan-rt to match the interface change in LLVm (r162268)

llvm-svn: 162269
This commit is contained in:
Kostya Serebryany 2012-08-21 08:24:35 +00:00
parent f4be019fba
commit 55b4dd314f
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ extern "C" {
uptr beg; // The address of the global.
uptr size; // The original size of the global.
uptr size_with_redzone; // The size with the redzone.
const char *name; // Name as a C string.
const char *name; // Name as a C string.
uptr has_dynamic_init; // Non-zero if the global has dynamic initializer.
};
// These two functions should be called by the instrumented code.