ads2armasm_ms: Match the indentation of the previous line

Instead of hardcoding a certain indentation, use the regexp to
provide similar indentation for the new line as well.

Change-Id: Iacb2621b35ce7e1aa3980c1603b8e3ab02d98a35
This commit is contained in:
Martin Storsjo 2014-03-20 08:12:29 +02:00
Родитель 8003cf9279
Коммит 1521eb8ba9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,7 @@ while (<STDIN>)
s/ldrneb/ldrbne/i;
s/ldrneh/ldrhne/i;
s/(ENDP.*)/$&\n ALIGN 4/;
s/^(\s*)ENDP.*/$&\n$1ALIGN 4/;
print;
}