mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Make the DWARFAbbreviationDeclaration::AttributeSpec type public.
It was already exposed through the iterators anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231297 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0effae854a
commit
c7e4df3846
@ -18,18 +18,14 @@ namespace llvm {
|
||||
class raw_ostream;
|
||||
|
||||
class DWARFAbbreviationDeclaration {
|
||||
uint32_t Code;
|
||||
uint32_t Tag;
|
||||
bool HasChildren;
|
||||
|
||||
public:
|
||||
struct AttributeSpec {
|
||||
AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
|
||||
uint16_t Attr;
|
||||
uint16_t Form;
|
||||
};
|
||||
typedef SmallVector<AttributeSpec, 8> AttributeSpecVector;
|
||||
AttributeSpecVector AttributeSpecs;
|
||||
public:
|
||||
|
||||
DWARFAbbreviationDeclaration();
|
||||
|
||||
uint32_t getCode() const { return Code; }
|
||||
@ -53,6 +49,12 @@ public:
|
||||
|
||||
private:
|
||||
void clear();
|
||||
|
||||
uint32_t Code;
|
||||
uint32_t Tag;
|
||||
bool HasChildren;
|
||||
|
||||
AttributeSpecVector AttributeSpecs;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user