Skip to content

Commit 317f905

Browse files
authored
Merge pull request #466 from solson/rustup
rustup
2 parents 179238a + 72cd905 commit 317f905

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/intrinsic.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ use rustc::mir;
22
use rustc::ty::layout::{self, LayoutOf, Size};
33
use rustc::ty;
44

5-
use rustc::mir::interpret::{EvalResult, Scalar, ScalarMaybeUndef, PointerArithmetic};
6-
use rustc_mir::interpret::{
7-
PlaceTy, EvalContext, OpTy, Value
8-
};
5+
use rustc::mir::interpret::{EvalResult, PointerArithmetic};
6+
use rustc_mir::interpret::{EvalContext, PlaceTy, OpTy};
97

10-
use super::{FalibleScalarExt, OperatorEvalContextExt};
8+
use super::{
9+
Value, Scalar, ScalarMaybeUndef,
10+
FalibleScalarExt, OperatorEvalContextExt
11+
};
1112

1213
pub trait EvalContextExt<'tcx> {
1314
fn call_intrinsic(

0 commit comments

Comments
 (0)