]> granicus.if.org Git - libvpx/commitdiff
Fix ads2gas script to look for ALIGN as a word.
authorFrank Galligan <fgalligan@google.com>
Mon, 10 Dec 2012 23:50:48 +0000 (15:50 -0800)
committerFrank Galligan <fgalligan@google.com>
Tue, 11 Dec 2012 00:30:32 +0000 (16:30 -0800)
Change-Id: I4efc4f4e87e8666b69257de82c5c5dd4aadee28c

build/make/ads2gas.pl

index ba70242dcba62b3f5acfac535882f61885ed293a..d8231e83051e88f4a83993e1cc4a3e9c6f5c43dc 100755 (executable)
@@ -149,7 +149,7 @@ while (<STDIN>)
     s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
 
     # ALIGN directive
-    s/ALIGN/.balign/g;
+    s/\bALIGN\b/.balign/g;
 
     # ARM code
     s/\sARM/.arm/g;