Add fixmes to horrible casting code.
This commit is contained in:
parent
d3b47c418f
commit
aa791a4085
1 changed files with 2 additions and 0 deletions
|
@ -433,8 +433,10 @@ impl<'a, 'tcx: 'a> Interpreter<'a, 'tcx> {
|
||||||
|
|
||||||
Misc => {
|
Misc => {
|
||||||
if pointee_type(src_ty).is_some() && pointee_type(dest_ty).is_some() {
|
if pointee_type(src_ty).is_some() && pointee_type(dest_ty).is_some() {
|
||||||
|
// FIXME(tsion): Wrong for fat pointers.
|
||||||
self.memory.copy(src, dest, 8)
|
self.memory.copy(src, dest, 8)
|
||||||
} else {
|
} else {
|
||||||
|
// FIXME(tsion): Wrong for almost everything.
|
||||||
self.memory.copy(src, dest, 8)
|
self.memory.copy(src, dest, 8)
|
||||||
// panic!("can't handle cast: {:?}", rvalue);
|
// panic!("can't handle cast: {:?}", rvalue);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue