//! AArch64 architecture-specific ELF relocation and dynamic linking support.
//!
//! This module provides AArch64 specific implementations for ELF relocation,
//! dynamic linking, and procedure linkage table (PLT) handling.
// `lazy` and `tls` contain naked assembly that is only valid when the host
// CPU matches this module's architecture. Other architectures only need the
// pure-data items (relocation type numbers, ...) so we gate the
// platform-specific submodules on `target_arch`.
pub use ;
pub use ;