diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-19 14:18:16 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-19 14:18:16 +0000 |
commit | f0ca160ea27bff175c81ea1256af958bff166149 (patch) | |
tree | e7c18b905a5146d60923b6d81e0c618ce9d0daac /compiler-rt/include/sanitizer/common_interface_defs.h | |
parent | f135f0ec1daa7779a7bcc49f232165d1f09f3fdc (diff) | |
download | bcm5719-llvm-f0ca160ea27bff175c81ea1256af958bff166149.tar.gz bcm5719-llvm-f0ca160ea27bff175c81ea1256af958bff166149.zip |
[sanitizer] rename __sanitizer_symbolize_data to __sanitizer_symbolize_global (to avoid conflict with another definition)
llvm-svn: 281902
Diffstat (limited to 'compiler-rt/include/sanitizer/common_interface_defs.h')
-rw-r--r-- | compiler-rt/include/sanitizer/common_interface_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/include/sanitizer/common_interface_defs.h b/compiler-rt/include/sanitizer/common_interface_defs.h index 0ebe91018fd..d8ff272c29f 100644 --- a/compiler-rt/include/sanitizer/common_interface_defs.h +++ b/compiler-rt/include/sanitizer/common_interface_defs.h @@ -124,8 +124,8 @@ extern "C" { void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf, size_t out_buf_size); // Same as __sanitizer_symbolize_pc, but for data section (i.e. globals). - void __sanitizer_symbolize_data(void *data_ptr, const char *fmt, - char *out_buf, size_t out_buf_size); + void __sanitizer_symbolize_global(void *data_ptr, const char *fmt, + char *out_buf, size_t out_buf_size); // Sets the callback to be called right before death on error. // Passing 0 will unset the callback. |