Skip to content

Commit 8f991d1

Browse files
committed
Remove duplicated tests for the cttz intrinsic
1 parent 6365080 commit 8f991d1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/test/run-pass/intrinsics-integer.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,6 @@ pub fn main() {
109109
assert_eq!(cttz32(100), 2);
110110
assert_eq!(cttz64(100), 2);
111111

112-
assert_eq!(cttz8(-1), 0);
113-
assert_eq!(cttz16(-1), 0);
114-
assert_eq!(cttz32(-1), 0);
115-
assert_eq!(cttz64(-1), 0);
116-
117112
assert_eq!(bswap16(0x0A0B), 0x0B0A);
118113
assert_eq!(bswap32(0x0ABBCC0D), 0x0DCCBB0A);
119114
assert_eq!(bswap64(0x0122334455667708), 0x0877665544332201);

0 commit comments

Comments
 (0)