Skip to content

Commit acac585

Browse files
committed
Move large chunks of miri from rustc::mir::interpret to rustc_mir::interpret
1 parent 8c2ec68 commit acac585

26 files changed

+1103
-1053
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ before_deploy:
293293
cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
294294
fi
295295
- travis_retry gem update --system
296+
- ls -la deploy/$TRAVIS_COMMIT
296297

297298
deploy:
298299
- provider: s3

src/Cargo.lock

+11-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/librustc/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ rustc_errors = { path = "../librustc_errors" }
2424
serialize = { path = "../libserialize" }
2525
syntax = { path = "../libsyntax" }
2626
syntax_pos = { path = "../libsyntax_pos" }
27-
log_settings = "0.1.1"
28-
lazy_static = "0.2.8"
2927
regex = "0.2.2"
3028
backtrace = "0.3.3"
3129
byteorder = { version = "1.1", features = ["i128"]}

src/librustc/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,7 @@ extern crate jobserver;
9191
extern crate serialize as rustc_serialize; // used by deriving
9292

9393
extern crate rustc_apfloat;
94-
extern crate log_settings;
9594
extern crate byteorder;
96-
#[macro_use]
97-
extern crate lazy_static;
9895
extern crate regex;
9996
extern crate backtrace;
10097

src/librustc/mir/interpret/const_eval.rs

-288
This file was deleted.

0 commit comments

Comments
 (0)