[PATCH] D65160: [libFuzzer] Fix __sanitizer_print_memory_profile return type in ExtFunctions.def

Max Moroz via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 23 11:28:24 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL366834: [libFuzzer] Fix __sanitizer_print_memory_profile return type in ExtFunctions.def (authored by Dor1s, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D65160/new/

https://reviews.llvm.org/D65160

Files:
  compiler-rt/trunk/lib/fuzzer/FuzzerExtFunctions.def


Index: compiler-rt/trunk/lib/fuzzer/FuzzerExtFunctions.def
===================================================================
--- compiler-rt/trunk/lib/fuzzer/FuzzerExtFunctions.def
+++ compiler-rt/trunk/lib/fuzzer/FuzzerExtFunctions.def
@@ -34,7 +34,7 @@
           void (*free_hook)(const volatile void *)),
          false);
 EXT_FUNC(__sanitizer_purge_allocator, void, (), false);
-EXT_FUNC(__sanitizer_print_memory_profile, int, (size_t, size_t), false);
+EXT_FUNC(__sanitizer_print_memory_profile, void, (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);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65160.211341.patch
Type: text/x-patch
Size: 718 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190723/914c2185/attachment.bin>


More information about the llvm-commits mailing list