This is an archive of the discontinued LLVM Phabricator instance.

Fix libunwind to build on FreeBSD
ClosedPublic

Authored by kutuzov.viktor.84 on Apr 25 2015, 7:09 AM.

Diff Detail

Repository
rL LLVM

Event Timeline

kutuzov.viktor.84 retitled this revision from to Fix libunwind to build on FreeBSD.
kutuzov.viktor.84 updated this object.
kutuzov.viktor.84 edited the test plan for this revision. (Show Details)
kutuzov.viktor.84 added a subscriber: Unknown Object (MLST).
compnerd accepted this revision.Apr 28 2015, 7:54 PM
compnerd edited edge metadata.

LGTM with the minor change.

src/AddressSpace.hpp
391 ↗(On Diff #24426)

I think this would be better as:

#if !defined(Elf_Half)
typedef ElfW(Half) Elf_Half;
#endif
#if !defined(Elf_Phdr)
typedef ElfW(Phdr) Elf_Phdr;
#endif
This revision is now accepted and ready to land.Apr 28 2015, 7:54 PM
This revision was automatically updated to reflect the committed changes.