[PATCH] D27405: Make sancov.py py3-compatible

Michał Górny via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 1 00:34:55 PST 2017


mgorny added inline comments.


================
Comment at: compiler-rt/trunk/lib/sanitizer_common/scripts/sancov.py:223
   for pc in sorted(missing):
-    print "0x%x" % pc
+    print("0x%x" % pc)
 
----------------
chapuni wrote:
> mgorny wrote:
> > Newline?
> It ought to emit a newline.
You are correct. My mistake, sorry.


Repository:
  rL LLVM

https://reviews.llvm.org/D27405





More information about the llvm-commits mailing list