[PATCH] D114223: Make ScopedPrinter interface virtual

James Henderson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 3 01:30:10 PST 2021


jhenderson added inline comments.


================
Comment at: llvm/include/llvm/Support/ScopedPrinter.h:213-215
+  virtual void printNumber(StringRef Label, const APSInt &Value) {
     startLine() << Label << ": " << Value << "\n";
   }
----------------
Do we need an equivalent `printList` virtual method for `APSInt`?


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

https://reviews.llvm.org/D114223



More information about the llvm-commits mailing list