1
Fork 0

Rustup to rustc 1.38.0-nightly (c43753f91 2019-07-26)

This commit is contained in:
bjorn3 2019-07-27 11:35:46 +02:00
parent 8506784d74
commit fe20f8cba6
3 changed files with 2 additions and 3 deletions

View file

@ -379,6 +379,7 @@ fn local_place<'a, 'tcx: 'a>(
abi: _, abi: _,
variants: _, variants: _,
fields: _, fields: _,
largest_niche: _,
} = details; } = details;
match place { match place {
CPlace::Stack(stack_slot, _) => fx.add_entity_comment( CPlace::Stack(stack_slot, _) => fx.add_entity_comment(

View file

@ -10,8 +10,7 @@
use crate::prelude::*; use crate::prelude::*;
use rustc::middle::allocator::AllocatorKind; use syntax::ext::allocator::{AllocatorKind, AllocatorTy, ALLOCATOR_METHODS};
use rustc_allocator::{AllocatorTy, ALLOCATOR_METHODS};
/// Returns whether an allocator shim was created /// Returns whether an allocator shim was created
pub fn codegen(sess: &Session, module: &mut Module<impl Backend + 'static>) -> bool { pub fn codegen(sess: &Session, module: &mut Module<impl Backend + 'static>) -> bool {

View file

@ -3,7 +3,6 @@
extern crate flate2; extern crate flate2;
extern crate rustc; extern crate rustc;
extern crate rustc_allocator;
extern crate rustc_codegen_ssa; extern crate rustc_codegen_ssa;
extern crate rustc_codegen_utils; extern crate rustc_codegen_utils;
extern crate rustc_data_structures; extern crate rustc_data_structures;