Skip to content

Commit

Permalink
trans: Move TransItem to its own module.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwoerister committed May 11, 2016
1 parent c049541 commit e3f19cb
Show file tree
Hide file tree
Showing 8 changed files with 383 additions and 367 deletions.
3 changes: 2 additions & 1 deletion src/librustc_trans/base.rs
Expand Up @@ -59,7 +59,7 @@ use callee::{Callee, CallArgs, ArgExprs, ArgVals};
use cleanup::{self, CleanupMethods, DropHint};
use closure;
use common::{Block, C_bool, C_bytes_in_context, C_i32, C_int, C_uint, C_integral};
use collector::{self, TransItem, TransItemState, TransItemCollectionMode};
use collector::{self, TransItemState, TransItemCollectionMode};
use common::{C_null, C_struct_in_context, C_u64, C_u8, C_undef};
use common::{CrateContext, DropFlagHintsMap, Field, FunctionContext};
use common::{Result, NodeIdAndSpan, VariantInfo};
Expand All @@ -82,6 +82,7 @@ use mir;
use monomorphize::{self, Instance};
use partitioning::{self, PartitioningStrategy, InstantiationMode, CodegenUnit};
use symbol_names_test;
use trans_item::TransItem;
use tvec;
use type_::Type;
use type_of;
Expand Down

0 comments on commit e3f19cb

Please sign in to comment.