Remove remnants of BorrowOfPackedField
This commit is contained in:
parent
7dc9ff5c62
commit
62044b2fab
2 changed files with 22 additions and 43 deletions
|
@ -32,7 +32,6 @@ pub enum UnsafetyViolationDetails {
|
||||||
UseOfInlineAssembly,
|
UseOfInlineAssembly,
|
||||||
InitializingTypeWith,
|
InitializingTypeWith,
|
||||||
CastOfPointerToInt,
|
CastOfPointerToInt,
|
||||||
BorrowOfPackedField,
|
|
||||||
UseOfMutableStatic,
|
UseOfMutableStatic,
|
||||||
UseOfExternStatic,
|
UseOfExternStatic,
|
||||||
DerefOfRawPointer,
|
DerefOfRawPointer,
|
||||||
|
@ -64,11 +63,6 @@ impl UnsafetyViolationDetails {
|
||||||
CastOfPointerToInt => {
|
CastOfPointerToInt => {
|
||||||
("cast of pointer to int", "casting pointers to integers in constants")
|
("cast of pointer to int", "casting pointers to integers in constants")
|
||||||
}
|
}
|
||||||
BorrowOfPackedField => (
|
|
||||||
"borrow of packed field",
|
|
||||||
"fields of packed structs might be misaligned: dereferencing a misaligned pointer \
|
|
||||||
or even just creating a misaligned reference is undefined behavior",
|
|
||||||
),
|
|
||||||
UseOfMutableStatic => (
|
UseOfMutableStatic => (
|
||||||
"use of mutable static",
|
"use of mutable static",
|
||||||
"mutable statics can be mutated by multiple threads: aliasing violations or data \
|
"mutable statics can be mutated by multiple threads: aliasing violations or data \
|
||||||
|
|
|
@ -64,9 +64,6 @@ impl<'tcx> UnsafetyVisitor<'tcx> {
|
||||||
SafetyContext::UnsafeFn if unsafe_op_in_unsafe_fn_allowed => {}
|
SafetyContext::UnsafeFn if unsafe_op_in_unsafe_fn_allowed => {}
|
||||||
SafetyContext::UnsafeFn => {
|
SafetyContext::UnsafeFn => {
|
||||||
// unsafe_op_in_unsafe_fn is disallowed
|
// unsafe_op_in_unsafe_fn is disallowed
|
||||||
if kind == BorrowOfPackedField {
|
|
||||||
// FIXME handle borrows of packed fields
|
|
||||||
} else {
|
|
||||||
struct_span_err!(
|
struct_span_err!(
|
||||||
self.tcx.sess,
|
self.tcx.sess,
|
||||||
span,
|
span,
|
||||||
|
@ -78,11 +75,7 @@ impl<'tcx> UnsafetyVisitor<'tcx> {
|
||||||
.note(note)
|
.note(note)
|
||||||
.emit();
|
.emit();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
SafetyContext::Safe => {
|
SafetyContext::Safe => {
|
||||||
if kind == BorrowOfPackedField {
|
|
||||||
// FIXME handle borrows of packed fields
|
|
||||||
} else {
|
|
||||||
let fn_sugg = if unsafe_op_in_unsafe_fn_allowed { " function or" } else { "" };
|
let fn_sugg = if unsafe_op_in_unsafe_fn_allowed { " function or" } else { "" };
|
||||||
struct_span_err!(
|
struct_span_err!(
|
||||||
self.tcx.sess,
|
self.tcx.sess,
|
||||||
|
@ -98,7 +91,6 @@ impl<'tcx> UnsafetyVisitor<'tcx> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
fn warn_unused_unsafe(
|
fn warn_unused_unsafe(
|
||||||
&self,
|
&self,
|
||||||
|
@ -203,8 +195,6 @@ enum UnsafeOpKind {
|
||||||
#[allow(dead_code)] // FIXME
|
#[allow(dead_code)] // FIXME
|
||||||
CastOfPointerToInt,
|
CastOfPointerToInt,
|
||||||
#[allow(dead_code)] // FIXME
|
#[allow(dead_code)] // FIXME
|
||||||
BorrowOfPackedField,
|
|
||||||
#[allow(dead_code)] // FIXME
|
|
||||||
UseOfMutableStatic,
|
UseOfMutableStatic,
|
||||||
#[allow(dead_code)] // FIXME
|
#[allow(dead_code)] // FIXME
|
||||||
UseOfExternStatic,
|
UseOfExternStatic,
|
||||||
|
@ -244,11 +234,6 @@ impl UnsafeOpKind {
|
||||||
CastOfPointerToInt => {
|
CastOfPointerToInt => {
|
||||||
("cast of pointer to int", "casting pointers to integers in constants")
|
("cast of pointer to int", "casting pointers to integers in constants")
|
||||||
}
|
}
|
||||||
BorrowOfPackedField => (
|
|
||||||
"borrow of packed field",
|
|
||||||
"fields of packed structs might be misaligned: dereferencing a misaligned pointer \
|
|
||||||
or even just creating a misaligned reference is undefined behavior",
|
|
||||||
),
|
|
||||||
UseOfMutableStatic => (
|
UseOfMutableStatic => (
|
||||||
"use of mutable static",
|
"use of mutable static",
|
||||||
"mutable statics can be mutated by multiple threads: aliasing violations or data \
|
"mutable statics can be mutated by multiple threads: aliasing violations or data \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue