summaryrefslogtreecommitdiffstats
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
commit55b4dd314f65ea39e6ad7b5037bf7dae77d9bb3b (patch)
treeb209e4f5826b3851c71c1d3e18a27849dee1cb9e
parentf4be019fba4c666087fb1784144b961ab5ef5d1c (diff)
downloadbcm5719-llvm-55b4dd314f65ea39e6ad7b5037bf7dae77d9bb3b.tar.gz
bcm5719-llvm-55b4dd314f65ea39e6ad7b5037bf7dae77d9bb3b.zip
[asan] update asan-rt to match the interface change in LLVm (r162268)
llvm-svn: 162269
-rw-r--r--compiler-rt/lib/asan/asan_interface.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_interface.h b/compiler-rt/lib/asan/asan_interface.h
index 8195c47dad0..40ce3cbbbae 100644
--- a/compiler-rt/lib/asan/asan_interface.h
+++ b/compiler-rt/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.
OpenPOWER on IntegriCloud