diff options
author | Kostya Serebryany <kcc@google.com> | 2017-03-15 23:27:53 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2017-03-15 23:27:53 +0000 |
commit | 6d5412596c7736ff9d67be5e0a5037e80de26a38 (patch) | |
tree | 19b059c364325d22258261e9c6033f7353ac08dd /llvm/lib/Fuzzer/FuzzerExtFunctions.def | |
parent | cee3fc61cb57166d38b4b23c3ed268284db76239 (diff) | |
download | bcm5719-llvm-6d5412596c7736ff9d67be5e0a5037e80de26a38.tar.gz bcm5719-llvm-6d5412596c7736ff9d67be5e0a5037e80de26a38.zip |
[libFuzzer] call __sanitizer_print_memory_profile with two params
llvm-svn: 297916
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerExtFunctions.def')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerExtFunctions.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerExtFunctions.def b/llvm/lib/Fuzzer/FuzzerExtFunctions.def index 926d4b42ed4..3bc5302c31c 100644 --- a/llvm/lib/Fuzzer/FuzzerExtFunctions.def +++ b/llvm/lib/Fuzzer/FuzzerExtFunctions.def @@ -33,7 +33,7 @@ EXT_FUNC(__sanitizer_install_malloc_and_free_hooks, int, (void (*malloc_hook)(const volatile void *, size_t), void (*free_hook)(const volatile void *)), false); -EXT_FUNC(__sanitizer_print_memory_profile, int, (size_t), false); +EXT_FUNC(__sanitizer_print_memory_profile, int, (size_t, size_t), false); EXT_FUNC(__sanitizer_print_stack_trace, void, (), true); EXT_FUNC(__sanitizer_symbolize_pc, void, (void *, const char *fmt, char *out_buf, size_t out_buf_size), false); |