diff options
Diffstat (limited to 'llvm/lib/Target/BPF/BTFDebug.h')
-rw-r--r-- | llvm/lib/Target/BPF/BTFDebug.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/BPF/BTFDebug.h b/llvm/lib/Target/BPF/BTFDebug.h index 58fba7f5a9c..7d7a1d9b707 100644 --- a/llvm/lib/Target/BPF/BTFDebug.h +++ b/llvm/lib/Target/BPF/BTFDebug.h @@ -100,11 +100,10 @@ public: /// Handle array type. class BTFTypeArray : public BTFTypeBase { - const DICompositeType *ATy; struct BTF::BTFArray ArrayInfo; public: - BTFTypeArray(const DICompositeType *ATy); + BTFTypeArray(uint32_t ElemTypeId, uint32_t NumElems); uint32_t getSize() { return BTFTypeBase::getSize() + BTF::BTFArraySize; } void completeType(BTFDebug &BDebug); void emitType(MCStreamer &OS); |