about summary refs log tree commit diff
path: root/src/librustc_passes
diff options
context:
space:
mode:
authorOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>2018-04-24 15:36:25 +0200
committerOliver Schneider <git-no-reply-9879165716479413131@oli-obk.de>2018-04-30 18:18:33 +0200
commitf45d0f3783ec2a03a34712392d9d5e42067690dc (patch)
tree2f0dd3e34bca72a4fd6d2cf6e94fb4facd8ddabe /src/librustc_passes
parenta9366aa874a29467014c2eef96234455509aa438 (diff)
downloadrust-f45d0f3783ec2a03a34712392d9d5e42067690dc.tar.gz
rust-f45d0f3783ec2a03a34712392d9d5e42067690dc.zip
Removed unused dependencies on rustc_const_math
Diffstat (limited to 'src/librustc_passes')
-rw-r--r--src/librustc_passes/Cargo.toml1
-rw-r--r--src/librustc_passes/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/librustc_passes/Cargo.toml b/src/librustc_passes/Cargo.toml
index 4bab24ae139..2babb93eedb 100644
--- a/src/librustc_passes/Cargo.toml
+++ b/src/librustc_passes/Cargo.toml
@@ -12,7 +12,6 @@ crate-type = ["dylib"]
 log = "0.4"
 rustc = { path = "../librustc" }
 rustc_mir = { path = "../librustc_mir"}
-rustc_const_math = { path = "../librustc_const_math" }
 rustc_data_structures = { path = "../librustc_data_structures" }
 syntax = { path = "../libsyntax" }
 syntax_pos = { path = "../libsyntax_pos" }
diff --git a/src/librustc_passes/lib.rs b/src/librustc_passes/lib.rs
index e65c9de8df1..b6b5edc0940 100644
--- a/src/librustc_passes/lib.rs
+++ b/src/librustc_passes/lib.rs
@@ -23,7 +23,6 @@
 #[macro_use]
 extern crate rustc;
 extern crate rustc_mir;
-extern crate rustc_const_math;
 extern crate rustc_data_structures;
 
 #[macro_use]