diff options
author | dim <dim@FreeBSD.org> | 2015-02-10 07:45:43 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-02-10 07:45:43 +0000 |
commit | 5c652b16dfa55fef6d0953359e6e8f6933ee3a0f (patch) | |
tree | 5d0dcec3cc12fc53532fc84029892b98711a2596 /lib/sanitizer_common/scripts/sancov.py | |
parent | 2f1c5cc1039d86db0037cb086bd58f4b90dc6f66 (diff) | |
download | FreeBSD-src-5c652b16dfa55fef6d0953359e6e8f6933ee3a0f.zip FreeBSD-src-5c652b16dfa55fef6d0953359e6e8f6933ee3a0f.tar.gz |
Import compiler-rt trunk r228651.
https://llvm.org/svn/llvm-project/compiler-rt/trunk@228651
Diffstat (limited to 'lib/sanitizer_common/scripts/sancov.py')
-rwxr-xr-x | lib/sanitizer_common/scripts/sancov.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sanitizer_common/scripts/sancov.py b/lib/sanitizer_common/scripts/sancov.py index 4769530..566116e 100755 --- a/lib/sanitizer_common/scripts/sancov.py +++ b/lib/sanitizer_common/scripts/sancov.py @@ -118,7 +118,7 @@ def UnpackOneRawFile(path, map_path): if len(pc_list) == 0: continue assert path.endswith('.sancov.raw') dst_path = module_path + '.' + os.path.basename(path)[:-4] - print "writing %d PCs to %s" % (len(pc_list), dst_path) + print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path) arr = array.array('I') arr.fromlist(sorted(pc_list)) with open(dst_path, 'ab') as f2: |