Make x.py check work
This commit is contained in:
parent
ddfcca48c6
commit
3c2d20ef0b
7 changed files with 211 additions and 134 deletions
|
@ -701,6 +701,10 @@ fn codegen_stmt<'tcx>(
|
|||
let operand = codegen_operand(fx, operand);
|
||||
operand.unsize_value(fx, lval);
|
||||
}
|
||||
Rvalue::Cast(CastKind::DynStar, _, _) => {
|
||||
// FIXME(dyn-star)
|
||||
unimplemented!()
|
||||
}
|
||||
Rvalue::Discriminant(place) => {
|
||||
let place = codegen_place(fx, place);
|
||||
let value = place.to_cvalue(fx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue