comment
This commit is contained in:
parent
3e7a5a4e0b
commit
2869abacfa
1 changed files with 7 additions and 0 deletions
|
|
@ -658,6 +658,13 @@ where
|
|||
PlaceTy {
|
||||
place: match self.frame().return_place {
|
||||
Some(p) => *p,
|
||||
// Even if we don't have a return place, we sometimes need to
|
||||
// create this place, but any attempt to read from / write to it
|
||||
// (even a ZST read/write) needs to error, so let us make this
|
||||
// a NULL place.
|
||||
//
|
||||
// FIXME: Ideally we'd make sure that the place projections also
|
||||
// bail out.
|
||||
None => Place::null(&*self),
|
||||
},
|
||||
layout: self.layout_of(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue