mkedges.sh 187 B

12345
  1. #!/bin/sh
  2. # create dot edgea from asm output for callgraph
  3. # see 'make callgraph' in makefile.am
  4. perl -ne '/^([^. \t#].*):/ and $f=$1;/call\s+([^*]\S*)/ and print "\"$f\" -> \"$1\"\n";'