mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Increase the size of DwarfAccelTable::TableHeaderData::Atoms.
During a Clang bootstrap, it seems this SmallVector always contains 3 elements. llvm-svn: 215334
This commit is contained in:
parent
479f339393
commit
87cb760ef1
@ -140,7 +140,7 @@ public:
|
||||
private:
|
||||
struct TableHeaderData {
|
||||
uint32_t die_offset_base;
|
||||
SmallVector<Atom, 1> Atoms;
|
||||
SmallVector<Atom, 3> Atoms;
|
||||
|
||||
TableHeaderData(ArrayRef<Atom> AtomList, uint32_t offset = 0)
|
||||
: die_offset_base(offset), Atoms(AtomList.begin(), AtomList.end()) {}
|
||||
|
Loading…
Reference in New Issue
Block a user