]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/lib.rs
Allow a dirty MirBuilt for make_extern and make_method_extern
[rust.git] / src / librustc_target / lib.rs
1 //! Some stuff used by rustc that doesn't have many dependencies
2 //!
3 //! Originally extracted from rustc::back, which was nominally the
4 //! compiler 'backend', though LLVM is rustc's backend, so rustc_target
5 //! is really just odds-and-ends relating to code gen and linking.
6 //! This crate mostly exists to make rustc smaller, so we might put
7 //! more 'stuff' here in the future.  It does not have a dependency on
8 //! LLVM.
9
10 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
11
12 #![feature(box_syntax)]
13 #![feature(nll)]
14 #![feature(rustc_attrs)]
15 #![feature(slice_patterns)]
16 #![feature(step_trait)]
17
18 #[macro_use]
19 extern crate bitflags;
20 extern crate serialize;
21 #[macro_use] extern crate log;
22
23 extern crate serialize as rustc_serialize; // used by deriving
24
25 // See librustc_cratesio_shim/Cargo.toml for a comment explaining this.
26 #[allow(unused_extern_crates)]
27 extern crate rustc_cratesio_shim;
28
29 #[macro_use]
30 extern crate rustc_data_structures;
31
32 pub mod abi;
33 pub mod spec;