mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix one expression bug to support ~ operate
current use (0x41>=~0x0&0x41|0x0) as Pcd value cause build failure because the ~ is not correctly recognized. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
f2cc33d849
commit
f25cd80e4d
|
@ -788,7 +788,7 @@ class ValueExpression(BaseExpression):
|
|||
OpToken = ''
|
||||
for Ch in Expr:
|
||||
if Ch in self.NonLetterOpLst:
|
||||
if '!' == Ch and OpToken:
|
||||
if Ch in ['!', '~'] and OpToken:
|
||||
break
|
||||
self._Idx += 1
|
||||
OpToken += Ch
|
||||
|
|
Loading…
Reference in New Issue