mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Add DWARFFormValue::getAsBlock() and add FC_Flag as an acceptable class for an unsigned constant.
To be used in further patches that improve the dumpers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217129 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -543,7 +543,15 @@ Optional<uint64_t> DWARFFormValue::getAsSectionOffset() const {
|
||||
}
|
||||
|
||||
Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
|
||||
if (!isFormClass(FC_Constant) || Form == DW_FORM_sdata)
|
||||
if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag))
|
||||
|| Form == DW_FORM_sdata)
|
||||
return None;
|
||||
return Value.uval;
|
||||
}
|
||||
|
||||
Optional<ArrayRef<const uint8_t>> DWARFFormValue::getAsBlock() const {
|
||||
if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
|
||||
return None;
|
||||
return ArrayRef<const uint8_t>(Value.data, Value.uval);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user