Script to fixup clang asm for binutils

master
Marc Salem 2012-07-17 14:01:36 -07:00
parent b05a172f24
commit ce354c8727
1 changed files with 5 additions and 0 deletions

5
jni/fixup_assembly.pl Executable file
View File

@ -0,0 +1,5 @@
while (<>) {
s/chkstk/_chkstk/;
s/rrx(.*)/mov\1, rrx/;
print;
}