Skip to content

Commit 8ccf52c

Browse files
stage0 -> bootstrap
1 parent 1cc7c21 commit 8ccf52c

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

src/libstd/os/raw/mod.rs

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
99
#![stable(feature = "raw_os", since = "1.1.0")]
1010

11-
#[cfg_attr(stage0, doc(include = "os/raw/char.md"))]
12-
#[cfg_attr(not(stage0), doc(include = "char.md"))]
11+
#[cfg_attr(bootstrap, doc(include = "os/raw/char.md"))]
12+
#[cfg_attr(not(bootstrap), doc(include = "char.md"))]
1313
#[cfg(any(all(target_os = "linux", any(target_arch = "aarch64",
1414
target_arch = "arm",
1515
target_arch = "powerpc",
@@ -32,8 +32,8 @@
3232
target_arch = "powerpc")),
3333
all(target_os = "fuchsia", target_arch = "aarch64")))]
3434
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = u8;
35-
#[cfg_attr(stage0, doc(include = "os/raw/char.md"))]
36-
#[cfg_attr(not(stage0), doc(include = "char.md"))]
35+
#[cfg_attr(bootstrap, doc(include = "os/raw/char.md"))]
36+
#[cfg_attr(not(bootstrap), doc(include = "char.md"))]
3737
#[cfg(not(any(all(target_os = "linux", any(target_arch = "aarch64",
3838
target_arch = "arm",
3939
target_arch = "powerpc",
@@ -56,51 +56,51 @@
5656
target_arch = "powerpc")),
5757
all(target_os = "fuchsia", target_arch = "aarch64"))))]
5858
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = i8;
59-
#[cfg_attr(stage0, doc(include = "os/raw/schar.md"))]
60-
#[cfg_attr(not(stage0), doc(include = "schar.md"))]
59+
#[cfg_attr(bootstrap, doc(include = "os/raw/schar.md"))]
60+
#[cfg_attr(not(bootstrap), doc(include = "schar.md"))]
6161
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_schar = i8;
62-
#[cfg_attr(stage0, doc(include = "os/raw/uchar.md"))]
63-
#[cfg_attr(not(stage0), doc(include = "uchar.md"))]
62+
#[cfg_attr(bootstrap, doc(include = "os/raw/uchar.md"))]
63+
#[cfg_attr(not(bootstrap), doc(include = "uchar.md"))]
6464
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_uchar = u8;
65-
#[cfg_attr(stage0, doc(include = "os/raw/short.md"))]
66-
#[cfg_attr(not(stage0), doc(include = "short.md"))]
65+
#[cfg_attr(bootstrap, doc(include = "os/raw/short.md"))]
66+
#[cfg_attr(not(bootstrap), doc(include = "short.md"))]
6767
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_short = i16;
68-
#[cfg_attr(stage0, doc(include = "os/raw/ushort.md"))]
69-
#[cfg_attr(not(stage0), doc(include = "ushort.md"))]
68+
#[cfg_attr(bootstrap, doc(include = "os/raw/ushort.md"))]
69+
#[cfg_attr(not(bootstrap), doc(include = "ushort.md"))]
7070
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_ushort = u16;
71-
#[cfg_attr(stage0, doc(include = "os/raw/int.md"))]
72-
#[cfg_attr(not(stage0), doc(include = "int.md"))]
71+
#[cfg_attr(bootstrap, doc(include = "os/raw/int.md"))]
72+
#[cfg_attr(not(bootstrap), doc(include = "int.md"))]
7373
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_int = i32;
74-
#[cfg_attr(stage0, doc(include = "os/raw/uint.md"))]
75-
#[cfg_attr(not(stage0), doc(include = "uint.md"))]
74+
#[cfg_attr(bootstrap, doc(include = "os/raw/uint.md"))]
75+
#[cfg_attr(not(bootstrap), doc(include = "uint.md"))]
7676
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_uint = u32;
77-
#[cfg_attr(stage0, doc(include = "os/raw/long.md"))]
78-
#[cfg_attr(not(stage0), doc(include = "long.md"))]
77+
#[cfg_attr(bootstrap, doc(include = "os/raw/long.md"))]
78+
#[cfg_attr(not(bootstrap), doc(include = "long.md"))]
7979
#[cfg(any(target_pointer_width = "32", windows))]
8080
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_long = i32;
81-
#[cfg_attr(stage0, doc(include = "os/raw/ulong.md"))]
82-
#[cfg_attr(not(stage0), doc(include = "ulong.md"))]
81+
#[cfg_attr(bootstrap, doc(include = "os/raw/ulong.md"))]
82+
#[cfg_attr(not(bootstrap), doc(include = "ulong.md"))]
8383
#[cfg(any(target_pointer_width = "32", windows))]
8484
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_ulong = u32;
85-
#[cfg_attr(stage0, doc(include = "os/raw/long.md"))]
86-
#[cfg_attr(not(stage0), doc(include = "long.md"))]
85+
#[cfg_attr(bootstrap, doc(include = "os/raw/long.md"))]
86+
#[cfg_attr(not(bootstrap), doc(include = "long.md"))]
8787
#[cfg(all(target_pointer_width = "64", not(windows)))]
8888
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_long = i64;
89-
#[cfg_attr(stage0, doc(include = "os/raw/ulong.md"))]
90-
#[cfg_attr(not(stage0), doc(include = "ulong.md"))]
89+
#[cfg_attr(bootstrap, doc(include = "os/raw/ulong.md"))]
90+
#[cfg_attr(not(bootstrap), doc(include = "ulong.md"))]
9191
#[cfg(all(target_pointer_width = "64", not(windows)))]
9292
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_ulong = u64;
93-
#[cfg_attr(stage0, doc(include = "os/raw/longlong.md"))]
94-
#[cfg_attr(not(stage0), doc(include = "longlong.md"))]
93+
#[cfg_attr(bootstrap, doc(include = "os/raw/longlong.md"))]
94+
#[cfg_attr(not(bootstrap), doc(include = "longlong.md"))]
9595
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_longlong = i64;
96-
#[cfg_attr(stage0, doc(include = "os/raw/ulonglong.md"))]
97-
#[cfg_attr(not(stage0), doc(include = "ulonglong.md"))]
96+
#[cfg_attr(bootstrap, doc(include = "os/raw/ulonglong.md"))]
97+
#[cfg_attr(not(bootstrap), doc(include = "ulonglong.md"))]
9898
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_ulonglong = u64;
99-
#[cfg_attr(stage0, doc(include = "os/raw/float.md"))]
100-
#[cfg_attr(not(stage0), doc(include = "float.md"))]
99+
#[cfg_attr(bootstrap, doc(include = "os/raw/float.md"))]
100+
#[cfg_attr(not(bootstrap), doc(include = "float.md"))]
101101
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_float = f32;
102-
#[cfg_attr(stage0, doc(include = "os/raw/double.md"))]
103-
#[cfg_attr(not(stage0), doc(include = "double.md"))]
102+
#[cfg_attr(bootstrap, doc(include = "os/raw/double.md"))]
103+
#[cfg_attr(not(bootstrap), doc(include = "double.md"))]
104104
#[stable(feature = "raw_os", since = "1.1.0")] pub type c_double = f64;
105105

106106
#[stable(feature = "raw_os", since = "1.1.0")]

0 commit comments

Comments
 (0)