# HG changeset patch # User HackBot # Date 1445081363 0 # Node ID 1978adbb8da16137ff1908a28b60808a53df1017 # Parent 6324f7732ab09767a0def00e6f57323f74d0d7b8 ` sed -i -e \'s|(\\\\d+:)|(\\\\w+:)|\' bin/asm diff -r 6324f7732ab0 -r 1978adbb8da1 bin/asm --- a/bin/asm Sat Oct 17 11:05:52 2015 +0000 +++ b/bin/asm Sat Oct 17 11:29:23 2015 +0000 @@ -1,2 +1,2 @@ #!/bin/sh -echo "$1" > /tmp/asm.s; for o in ',' '-msyntax=intel -mnaked-reg,-M intel'; do if as ${o%,*} /tmp/asm.s -o /tmp/asm.o 2>>/tmp/asm.err; then objdump ${o#*,} -d --insn-width=20 /tmp/asm.o | sed -e "1,/0000000000000000/d" | perl -pe 'if (/^\s*(\d+:)\s*((?:\w\w )+)\s*(\S.*)$/) { ($a,$b,$c) = ($1,$2,$3); $_ = "$a $b ".($c =~ s/\s+/ /rg)."\n"; }'; exit; fi; done; cat /tmp/asm.err +echo "$1" > /tmp/asm.s; for o in ',' '-msyntax=intel -mnaked-reg,-M intel'; do if as ${o%,*} /tmp/asm.s -o /tmp/asm.o 2>>/tmp/asm.err; then objdump ${o#*,} -d --insn-width=20 /tmp/asm.o | sed -e "1,/0000000000000000/d" | perl -pe 'if (/^\s*(\w+:)\s*((?:\w\w )+)\s*(\S.*)$/) { ($a,$b,$c) = ($1,$2,$3); $_ = "$a $b ".($c =~ s/\s+/ /rg)."\n"; }'; exit; fi; done; cat /tmp/asm.err