rustc-ap-rustc_target 587.0.0

Automatically published version of the package `rustc_target` in the rust-lang/rust repository from commit 74d5c70b174f06843049af2d764ff57ddc81c81c The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation
//! Some stuff used by rustc that doesn't have many dependencies
//!
//! Originally extracted from rustc::back, which was nominally the
//! compiler 'backend', though LLVM is rustc's backend, so rustc_target
//! is really just odds-and-ends relating to code gen and linking.
//! This crate mostly exists to make rustc smaller, so we might put
//! more 'stuff' here in the future. It does not have a dependency on
//! LLVM.

#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]

#![feature(rustc_private, box_syntax)]
#![feature(nll)]
#![feature(slice_patterns)]

#[macro_use] extern crate log;

pub mod abi;
pub mod spec;