# HG changeset patch # User HackBot # Date 1445079847 0 # Node ID fa763bef8e1a733eb0ba3f0ddb0fe4145f36f8e6 # Parent 57238c8ddfda1afc59c98d560bc36f5f7a75ce4a ` sed -i -e \'s|rg)|rg)."\\\\n"|\' bin/asm diff -r 57238c8ddfda -r fa763bef8e1a bin/asm --- a/bin/asm Sat Oct 17 10:59:50 2015 +0000 +++ b/bin/asm Sat Oct 17 11:04:07 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); }'; 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