mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix build faliure introduced by r217129.
Looks like one can't put 'const uint8_t' as ArrayRef contained type. It fails to build with libstdc++. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217132 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df1bc5a200
commit
a41fd4f9c2
@ -70,7 +70,7 @@ public:
|
||||
Optional<const char *> getAsCString(const DWARFUnit *U) const;
|
||||
Optional<uint64_t> getAsAddress(const DWARFUnit *U) const;
|
||||
Optional<uint64_t> getAsSectionOffset() const;
|
||||
Optional<ArrayRef<const uint8_t>> getAsBlock() const;
|
||||
Optional<ArrayRef<uint8_t>> getAsBlock() const;
|
||||
|
||||
bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
|
||||
const DWARFUnit *u) const;
|
||||
|
@ -549,9 +549,9 @@ Optional<uint64_t> DWARFFormValue::getAsUnsignedConstant() const {
|
||||
return Value.uval;
|
||||
}
|
||||
|
||||
Optional<ArrayRef<const uint8_t>> DWARFFormValue::getAsBlock() const {
|
||||
Optional<ArrayRef<uint8_t>> DWARFFormValue::getAsBlock() const {
|
||||
if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc))
|
||||
return None;
|
||||
return ArrayRef<const uint8_t>(Value.data, Value.uval);
|
||||
return ArrayRef<uint8_t>(Value.data, Value.uval);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user