summaryrefslogtreecommitdiff
path: root/include/sanitizer/asan_interface.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2013-01-18 13:01:44 +0000
committerKostya Serebryany <kcc@google.com>2013-01-18 13:01:44 +0000
commit0ed0f439ae4cec9bb62cf3be61c37596a4ed7087 (patch)
tree40b73caf9e38c65ecfd8c13ad27f5e7c90ec4632 /include/sanitizer/asan_interface.h
parent4f32c0beaa83ffbb84db23d2e6205bee57c39ce1 (diff)
[asan] kill some dead code
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@172815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/sanitizer/asan_interface.h')
-rw-r--r--include/sanitizer/asan_interface.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/sanitizer/asan_interface.h b/include/sanitizer/asan_interface.h
index 6e8ae8723..6afc3800f 100644
--- a/include/sanitizer/asan_interface.h
+++ b/include/sanitizer/asan_interface.h
@@ -28,11 +28,6 @@ extern "C" {
// before any instrumented code is executed and before any call to malloc.
void __asan_init() SANITIZER_INTERFACE_ATTRIBUTE;
- // This function should be called by the instrumented code.
- // 'addr' is the address of a global variable called 'name' of 'size' bytes.
- void __asan_register_global(uptr addr, uptr size, const char *name)
- SANITIZER_INTERFACE_ATTRIBUTE;
-
// This structure describes an instrumented global variable.
struct __asan_global {
uptr beg; // The address of the global.