diff options
| author | Brian Anderson <banderson@mozilla.com> | 2016-09-28 20:55:26 +0000 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2016-09-28 23:17:56 +0000 |
| commit | 3b49c60ab71547e6dbaef086eb4cd2bb7fe9ff94 (patch) | |
| tree | 4b8a28dc91249b515d9b243d1edb9656550b1967 /src/libcompiler_builtins | |
| parent | 6ffb39bd08068c5b81706e122a09857e94ad6d84 (diff) | |
Remove stage0 hacks
Diffstat (limited to 'src/libcompiler_builtins')
| -rw-r--r-- | src/libcompiler_builtins/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcompiler_builtins/lib.rs b/src/libcompiler_builtins/lib.rs index fbcf5204d25..4a703b3da68 100644 --- a/src/libcompiler_builtins/lib.rs +++ b/src/libcompiler_builtins/lib.rs @@ -8,9 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![cfg_attr(not(stage0), feature(compiler_builtins))] +#![feature(compiler_builtins)] #![no_std] -#![cfg_attr(not(stage0), compiler_builtins)] +#![compiler_builtins] #![unstable(feature = "compiler_builtins_lib", reason = "internal implementation detail of rustc right now", issue = "0")] |
