[PATCH] D60589: [sanitizer_common] Expose a variadic version of the sanitizer Printf function.

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 24 16:55:29 PDT 2019


vitalybuka accepted this revision.
vitalybuka added inline comments.
This revision is now accepted and ready to land.


================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_bitvector.h:153
     bool res = l2_[i0][i1].setBit(i2);
-    // Printf("%s: %zd => %zd %zd %zd; %d\n", __func__,
-    // idx, i0, i1, i2, res);
----------------
few more?


================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_variadic_printf.h:19
+namespace __sanitizer {
+void VariadicPrintf(const char *format, va_list ap);
+} // namespace __sanitizer
----------------
VariadicPrintf -> Printf?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D60589





More information about the llvm-commits mailing list