Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions gcc/testsuite/rust/execute/torture/sip-hasher.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// { dg-skip-if "" { *-*-* } { "-m32" } { "" } }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe as @tschwinge suggested it'd be better to dg-ice for 32-bit?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should link to #4003 in the commit message anyway

// { dg-options "-w" }
// { dg-output "Hash: 0x63d53fd2170bbb8c\r*\n" }
#![feature(intrinsics)]
Expand Down Expand Up @@ -36,7 +35,7 @@
)*)
}

add_impl! { usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 f32 f64 }
add_impl! { usize u8 u16 u32 u64 isize i8 i16 i32 i64 f32 f64 }

impl<T> *const T {
pub unsafe fn add(self, count: usize) -> Self {
Expand Down Expand Up @@ -83,7 +82,6 @@
u16 = "u16",
u32 = "u32",
u64 = "u64",
u128 = "u128",
usize = "usize"
);

Expand Down
Loading