summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2012-08-21 08:24:35 +0000
committerKostya Serebryany <kcc@google.com>2012-08-21 08:24:35 +0000
commit2bf265b3faf8be1710e9a0441fe9344e105e991c (patch)
tree54d90866832c23834f6b2ec676300f494f95472c /lib
parent6611abe0c2737a37c1c69f0527a35bb34875221d (diff)
[asan] update asan-rt to match the interface change in LLVm (r162268)
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@162269 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/asan/asan_interface.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/asan/asan_interface.h b/lib/asan/asan_interface.h
index 8195c47da..40ce3cbbb 100644
--- a/lib/asan/asan_interface.h
+++ b/lib/asan/asan_interface.h
@@ -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.