Skip to content

Commit

Permalink
Merge pull request #3 from x-y-z/master
Browse files Browse the repository at this point in the history
Strip symbol info and comments
  • Loading branch information
jvesely committed Mar 3, 2016
2 parents 71c36f2 + 6255b38 commit 51b552d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disass_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi

TMPFILE=`mktemp`

objdump -j .text -d $1 |grep "^ " > ${TMPFILE}
objdump -j .text -d $1 |grep "^ " | sed -e "s/#.\+//g" -e "s/<.\+>//g" > ${TMPFILE}

diff ${TMPFILE} ${TARGET}

Expand Down

0 comments on commit 51b552d

Please sign in to comment.