# HG changeset patch # User HackBot # Date 1445079952 0 # Node ID 6324f7732ab09767a0def00e6f57323f74d0d7b8 # Parent 315b8ee3c5b012bd9e4041e6d7e69d4e5c96c1ae ` sed -i -e \'s/--prefix-addresses //\' bin/asm diff -r 315b8ee3c5b0 -r 6324f7732ab0 bin/asm --- a/bin/asm Sat Oct 17 11:05:28 2015 +0000 +++ b/bin/asm Sat Oct 17 11:05:52 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 --prefix-addresses --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*(\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