Skip to content

Commit

Permalink
Tweak objdump script, kcachegrind has gotten stricter about its parsing.
Browse files Browse the repository at this point in the history
git-svn-id: http://llvm.org/svn/llvm-project/klee/trunk@77168 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ddunbar committed Jul 26, 2009
1 parent 0e94007 commit 5ba455d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/objdump
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def fakeObjdumpOutput(file, start, end):

lines = open(file).readlines()
for i in range(max(0,start-1),min(end-1,len(lines))):
print '%x: _ %s'%(i+1,lines[i])
print '%x:\t00 00\t%s'%(i+1,lines[i])

def main(args):
# exact pattern match kcachegrind's calling sequence
Expand Down

0 comments on commit 5ba455d

Please sign in to comment.