ref: 1521eb8ba95d71eec1de44d56e4be1729e9c87a0
parent: 8003cf92797860abee73081540ed26ae9caee219
author: Martin Storsjo <martin@martin.st>
date: Thu Mar 20 04:12:29 EDT 2014
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
--- a/build/make/ads2armasm_ms.pl
+++ b/build/make/ads2armasm_ms.pl
@@ -32,7 +32,7 @@
s/ldrneb/ldrbne/i;
s/ldrneh/ldrhne/i;
- s/(ENDP.*)/$&\n ALIGN 4/;
+ s/^(\s*)ENDP.*/$&\n$1ALIGN 4/;
print;
}
--
⑨