Skip to content

Commit fcee002

Browse files
committed
break enum variant discriminant inference in case of 32-bit
`assert_eq!(-9223372036854775808isize as u64, 0x8000000000000000);` fails on 32 bit and succeeds on 64 bit. These commits don't change that behavior. The following worked before my changes, because the discriminant was always processed as `u64`. Now it fails, because the discriminant of `Bu64` is now `0` instead of `-9223372036854775808`. This is more in line with the above assertion's code, since `-9223372036854775808isize as u64` on 32 bit yielded `0`. ```rust enum Eu64 { Au64 = 0, Bu64 = 0x8000_0000_0000_0000 } ```
1 parent d4d6260 commit fcee002

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/test/run-pass/enum-discrim-autosizing.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
#![feature(stmt_expr_attributes)]
1112

1213
use std::mem::size_of;
1314

@@ -46,18 +47,15 @@ enum Ei64 {
4647
Bi64 = 0x8000_0000
4748
}
4849

49-
enum Eu64 {
50-
Au64 = 0,
51-
Bu64 = 0x8000_0000_0000_0000
52-
}
53-
5450
pub fn main() {
5551
assert_eq!(size_of::<Ei8>(), 1);
5652
assert_eq!(size_of::<Eu8>(), 1);
5753
assert_eq!(size_of::<Ei16>(), 2);
5854
assert_eq!(size_of::<Eu16>(), 2);
5955
assert_eq!(size_of::<Ei32>(), 4);
6056
assert_eq!(size_of::<Eu32>(), 4);
57+
#[cfg(target_pointer_width = "64")]
6158
assert_eq!(size_of::<Ei64>(), 8);
62-
assert_eq!(size_of::<Eu64>(), 8);
59+
#[cfg(target_pointer_width = "32")]
60+
assert_eq!(size_of::<Ei64>(), 4);
6361
}

0 commit comments

Comments
 (0)