This patch changes GnuHashTableSection implementation
to avoid depend on uintX_t and other ELFT stuff, reducing amount of
changes for following patch(es).
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
ELF/SyntheticSections.cpp | ||
---|---|---|
1493–1494 ↗ | (On Diff #92471) | Just like writeUint, you want to define readUint. |
1514 ↗ | (On Diff #92471) | &Buckets[I] -> Buckets + I |
1525–1526 ↗ | (On Diff #92471) | &Values[I++] -> Values + I++ |
Comment Actions
- Addressed review comments, rebased.
ELF/SyntheticSections.cpp | ||
---|---|---|
1493–1494 ↗ | (On Diff #92471) | Done. |
1514 ↗ | (On Diff #92471) | Done. |
1525–1526 ↗ | (On Diff #92471) | Done. |