File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/librustc_codegen_llvm Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -749,7 +749,7 @@ fn link_natively(sess: &Session,
749
749
// with some thread pool working in the background. It seems that no one
750
750
// currently knows a fix for this so in the meantime we're left with this...
751
751
info ! ( "{:?}" , & cmd) ;
752
- let retry_on_segfault = env:: var ( "RUSTc_RETRY_LINKER_ON_SEGFAULT " ) . is_ok ( ) ;
752
+ let retry_on_segfault = env:: var ( "RUSTC_RETRY_LINKER_ON_SEGFAULT " ) . is_ok ( ) ;
753
753
let mut prog;
754
754
let mut i = 0 ;
755
755
loop {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ pub trait TypeMethods : Backend {
19
19
fn type_i32 ( & self ) -> Self :: Type ;
20
20
fn type_i64 ( & self ) -> Self :: Type ;
21
21
fn type_i128 ( & self ) -> Self :: Type ;
22
- fn type_ix ( & self , num_bites : u64 ) -> Self :: Type ;
22
+ fn type_ix ( & self , num_bits : u64 ) -> Self :: Type ;
23
23
fn type_f32 ( & self ) -> Self :: Type ;
24
24
fn type_f64 ( & self ) -> Self :: Type ;
25
25
fn type_x86_mmx ( & self ) -> Self :: Type ;
You can’t perform that action at this time.
0 commit comments