-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Labels
A-Sparc64SPARC64 architectureSPARC64 architectureA-SystemZz architecturez architectureBlocked-RustIssues blocked on rust-lang/rustIssues blocked on rust-lang/rustUnsoundSomething breaks Rust safety guaranteesSomething breaks Rust safety guarantees
Description
This test passes on s390x-unknown-linux-gnu
and sparc64-unknown-linux-gnu
(it does not panic):
#[test]
pub fn scalar_test() {
let z = 0_i128;
let o = 1_i128;
if o >> z != o {
panic!();
}
}
The same applies to vectors containing i128
like i128x1
and i128x2
.
Reported upstream: rust-lang/rust#52015
Metadata
Metadata
Assignees
Labels
A-Sparc64SPARC64 architectureSPARC64 architectureA-SystemZz architecturez architectureBlocked-RustIssues blocked on rust-lang/rustIssues blocked on rust-lang/rustUnsoundSomething breaks Rust safety guaranteesSomething breaks Rust safety guarantees