Fix incorrect PROC/ENDP match
The conversion script was incorrectly matching CONFIG_POSTPROC[_VISUALIZER] and generating an incorrect vpx_config.asm Match both PROC and ENDP on word boundaries Change-Id: Ic2788c3b522d4ee0afc5223b72e1b09fb52645be
This commit is contained in:
parent
6b2792b0e0
commit
41e3da3a8c
@ -157,8 +157,8 @@ while (<STDIN>)
|
|||||||
s/\sPRESERVE8/@ PRESERVE8/g;
|
s/\sPRESERVE8/@ PRESERVE8/g;
|
||||||
|
|
||||||
# Strip PROC and ENDPROC
|
# Strip PROC and ENDPROC
|
||||||
s/PROC/@/g;
|
s/\bPROC\b/@/g;
|
||||||
s/ENDP/@/g;
|
s/\bENDP\b/@/g;
|
||||||
|
|
||||||
# EQU directive
|
# EQU directive
|
||||||
s/(.*)EQU(.*)/.set $1, $2/;
|
s/(.*)EQU(.*)/.set $1, $2/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user