Skip to content

Commit 7694e18

Browse files
committed
Rollup merge of rust-lang#33892 - seanmonstar:slice-eq-ptr, r=alexcrichton
core: check pointer equality when comparing byte slices If pointer address and length are the same, it should be the same slice. In experiments, I've seen that this doesn't happen as often in debug builds, but release builds seem to optimize to using a single pointer more often.
2 parents 4721f3a + 6af17e6 commit 7694e18

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/libcore/slice.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1830,6 +1830,9 @@ impl<A> SlicePartialEq<A> for [A]
18301830
if self.len() != other.len() {
18311831
return false;
18321832
}
1833+
if self.as_ptr() == other.as_ptr() {
1834+
return true;
1835+
}
18331836
unsafe {
18341837
let size = mem::size_of_val(self);
18351838
memcmp(self.as_ptr() as *const u8,

0 commit comments

Comments
 (0)