From 9af18728fa1ff2469c9b5f6a701c404092e44915 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Wed, 1 Jun 2016 09:14:01 -0700 Subject: [PATCH] Clean up unused-import warnings. --- cranelift/src/libcretonne/repr.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cranelift/src/libcretonne/repr.rs b/cranelift/src/libcretonne/repr.rs index 6e7e6ea80f..716887211d 100644 --- a/cranelift/src/libcretonne/repr.rs +++ b/cranelift/src/libcretonne/repr.rs @@ -1,7 +1,7 @@ //! Representation of Cretonne IL functions. use types::{Type, FunctionName, Signature}; -use entities::*; +use entities::{Ebb, NO_EBB, Inst, NO_INST, Value, NO_VALUE, ExpandedValue, StackSlot}; use instructions::*; use std::fmt::{self, Display, Formatter}; use std::ops::{Index, IndexMut}; @@ -502,7 +502,6 @@ impl<'a> Iterator for Values<'a> { mod tests { use super::*; use types; - use entities::*; use instructions::*; #[test]