2bf59bea48
- Compatible with Emscripten 1.38.46-upstream or later upstream. - Refactors the Emscripten target spec to share code with other wasm targets. - Replaces the old incorrect wasm32 C call ABI with the correct one, preserving the old one as wasm32_bindgen_compat for wasm-bindgen compatibility. - Updates the varargs ABI used by Emscripten and deletes the old one. - Removes the obsolete wasm32-experimental-emscripten target. - Uses EMCC_CFLAGS on CI to avoid the timeout problems with #63649.
35 lines
1.4 KiB
Rust
35 lines
1.4 KiB
Rust
// run-pass
|
|
#![feature(const_saturating_int_methods)]
|
|
|
|
const INT_U32_NO: u32 = (42 as u32).saturating_add(2);
|
|
const INT_U32: u32 = u32::max_value().saturating_add(1);
|
|
const INT_U128: u128 = u128::max_value().saturating_add(1);
|
|
const INT_I128: i128 = i128::max_value().saturating_add(1);
|
|
const INT_I128_NEG: i128 = i128::min_value().saturating_add(-1);
|
|
|
|
const INT_U32_NO_SUB: u32 = (42 as u32).saturating_sub(2);
|
|
const INT_U32_SUB: u32 = (1 as u32).saturating_sub(2);
|
|
const INT_I32_NO_SUB: i32 = (-42 as i32).saturating_sub(2);
|
|
const INT_I32_NEG_SUB: i32 = i32::min_value().saturating_sub(1);
|
|
const INT_I32_POS_SUB: i32 = i32::max_value().saturating_sub(-1);
|
|
const INT_U128_SUB: u128 = (0 as u128).saturating_sub(1);
|
|
const INT_I128_NEG_SUB: i128 = i128::min_value().saturating_sub(1);
|
|
const INT_I128_POS_SUB: i128 = i128::max_value().saturating_sub(-1);
|
|
|
|
fn main() {
|
|
assert_eq!(INT_U32_NO, 44);
|
|
assert_eq!(INT_U32, u32::max_value());
|
|
assert_eq!(INT_U128, u128::max_value());
|
|
assert_eq!(INT_I128, i128::max_value());
|
|
assert_eq!(INT_I128_NEG, i128::min_value());
|
|
|
|
assert_eq!(INT_U32_NO_SUB, 40);
|
|
assert_eq!(INT_U32_SUB, 0);
|
|
assert_eq!(INT_I32_NO_SUB, -44);
|
|
assert_eq!(INT_I32_NEG_SUB, i32::min_value());
|
|
assert_eq!(INT_I32_POS_SUB, i32::max_value());
|
|
assert_eq!(INT_U128_SUB, 0);
|
|
assert_eq!(INT_I128_NEG_SUB, i128::min_value());
|
|
assert_eq!(INT_I128_POS_SUB, i128::max_value());
|
|
}
|