~linaro-toolchain-dev/cortex-strings/trunk

« back to all changes in this revision

Viewing changes to scripts/plot-top.py

  • Committer: Will Newton
  • Date: 2013-06-21 14:42:10 UTC
  • Revision ID: will.newton@linaro.org-20130621144210-za4jb0kw9d4mcnml
Allow aligning source and destination buffers separately.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        heights = []
28
28
 
29
29
        for function in functions:
30
 
            matches = [x for x in records if x.variant==variant and x.function==function and x.alignment==8]
 
30
            matches = [x for x in records if x.variant==variant and x.function==function and x.src_alignment==8]
31
31
 
32
32
            if matches:
33
33
                match = matches[0]