BaseTools: Fix VOID* type bug
Code miss UINT32 and UINT64 value type setting in
VOID*, like as {UINT32({TRUE})}
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
(cherry picked from commit a35918caae
)
This commit is contained in:
committed by
Yonghong Zhu
parent
472f866bac
commit
8b501e7138
@ -857,8 +857,10 @@ class ValueExpressionEx(ValueExpression):
|
||||
ValueType = "UINT16"
|
||||
elif Item.startswith('UINT32'):
|
||||
ItemSize = 4
|
||||
ValueType = "UINT32"
|
||||
elif Item.startswith('UINT64'):
|
||||
ItemSize = 8
|
||||
ValueType = "UINT64"
|
||||
else:
|
||||
ItemSize = 0
|
||||
if ValueType:
|
||||
|
Reference in New Issue
Block a user