[PATCH] D60288: [libFuzzer] Fix output format in data flow merge script after Py3 change.

Max Moroz via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 4 15:21:14 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT357730: [libFuzzer] Fix output format in data flow merge script after Py3 change. (authored by Dor1s, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D60288?vs=193790&id=193791#toc

Repository:
  rCRT Compiler Runtime

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

https://reviews.llvm.org/D60288

Files:
  lib/fuzzer/scripts/merge_data_flow.py


Index: lib/fuzzer/scripts/merge_data_flow.py
===================================================================
--- lib/fuzzer/scripts/merge_data_flow.py
+++ lib/fuzzer/scripts/merge_data_flow.py
@@ -29,7 +29,7 @@
     else:
       D[F] = BV;
   for F in D.keys():
-    print("%s %s" % (F, D[F]))
+    print("%s %s" % (F, str(D[F])))
 
 if __name__ == '__main__':
   main(sys.argv)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60288.193791.patch
Type: text/x-patch
Size: 383 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190404/4193d3c4/attachment.bin>


More information about the llvm-commits mailing list