Skip to content

Commit

Permalink
Fix warning when compiling on 64 bit Linux
Browse files Browse the repository at this point in the history
Code is much simpler now as well.
  • Loading branch information
est31 committed Dec 30, 2016
1 parent d166ee9 commit 6b35963
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/libcompiler_builtins/lib.rs
Expand Up @@ -16,13 +16,9 @@
issue = "0")]
#![crate_name = "compiler_builtins"]
#![crate_type = "rlib"]
#![feature(staged_api)]
#![cfg_attr(any(target_pointer_width="32", target_pointer_width="16", target_os="windows",
target_arch="mips64"),
feature(core_intrinsics, repr_simd))]
#![feature(associated_consts)]
#![cfg_attr(not(stage0), feature(i128_type, core_float, abi_unadjusted))]

#![allow(unused_features)]
#![feature(staged_api, core_intrinsics, repr_simd,
i128_type, core_float, abi_unadjusted, associated_consts)]
#![allow(non_camel_case_types, unused_variables, unused_imports)]
#![cfg_attr(stage0, allow(dead_code))]

Expand Down

0 comments on commit 6b35963

Please sign in to comment.