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:
Yonghong Zhu 2018-08-22 10:11:23 +08:00
parent f2cc33d849
commit f25cd80e4d
1 changed files with 1 additions and 1 deletions

View File

@ -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