From a91bad6542e40805b68fc9841fdee59a015fca2b Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Thu, 30 Apr 2020 14:53:28 +0200 Subject: [PATCH] Highlight an error that can only happen in CTFE --- src/librustc_middle/mir/interpret/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_middle/mir/interpret/error.rs b/src/librustc_middle/mir/interpret/error.rs index 084b5fce38589..15b1b7ce526a1 100644 --- a/src/librustc_middle/mir/interpret/error.rs +++ b/src/librustc_middle/mir/interpret/error.rs @@ -438,7 +438,7 @@ impl fmt::Debug for UndefinedBehaviorInfo { /// Error information for when the program did something that might (or might not) be correct /// to do according to the Rust spec, but due to limitations in the interpreter, the /// operation could not be carried out. These limitations can differ between CTFE and the -/// Miri engine, e.g., CTFE does not support casting pointers to "real" integers. +/// Miri engine, e.g., CTFE does not support dereferencing pointers at integral addresses. /// /// Currently, we also use this as fall-back error kind for errors that have not been /// categorized yet.