1
Fork 0

Generalized memset and memcpy

This commit is contained in:
Denis Merigoux 2018-09-07 15:39:39 -07:00 committed by Eduard-Mihai Burtescu
parent 0514c7b1b2
commit d77e34f35b
23 changed files with 444 additions and 368 deletions

View file

@ -19,7 +19,10 @@ use rustc::ty::TyCtxt;
use rustc::ty::layout::{Align, Size};
use rustc::session::{config, Session};
use rustc_data_structures::small_c_str::SmallCStr;
use interfaces::{BuilderMethods, Backend, ConstMethods, TypeMethods};
use interfaces::{
Backend,
BuilderMethods, ConstMethods, BaseTypeMethods, DerivedTypeMethods, DerivedIntrinsicMethods,
};
use syntax;
use std::borrow::Cow;