Skip to content

Commit 530abac

Browse files
committed
Auto merge of rust-lang#2447 - RalfJung:rustup, r=RalfJung
rustup
2 parents a62f954 + dd3b8e8 commit 530abac

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

rust-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a86705942c4cfaaee60f2e7308ca2bca703a710f
1+
c11207ec89b856164bba03b8ecfe07b0b234ed21

tests/fail/intrinsics/ptr_offset_from_unsigned_neg.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Preparing for a rustc behavior change that'll happen soon: (FIXME remove this after the next submodule bump succeeded)
2-
//@normalize-stderr-test: "`(ptr_offset_from_unsigned)`" -> "$1"
31
#![feature(ptr_sub_ptr)]
42

53
fn main() {

tests/fail/intrinsics/ptr_offset_from_unsigned_neg.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error: Undefined Behavior: ptr_offset_from_unsigned called when first pointer has smaller offset than second: 0 < 4
1+
error: Undefined Behavior: `ptr_offset_from_unsigned` called when first pointer has smaller offset than second: 0 < 4
22
--> $DIR/ptr_offset_from_unsigned_neg.rs:LL:CC
33
|
44
LL | let _val = unsafe { ptr1.sub_ptr(ptr2) };
5-
| ^^^^^^^^^^^^^^^^^^ ptr_offset_from_unsigned called when first pointer has smaller offset than second: 0 < 4
5+
| ^^^^^^^^^^^^^^^^^^ `ptr_offset_from_unsigned` called when first pointer has smaller offset than second: 0 < 4
66
|
77
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
88
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information

0 commit comments

Comments
 (0)