add scaffolding

This commit is contained in:
Folkert 2022-03-07 20:55:40 +01:00
parent 92ace8ff67
commit 3510bad1d5
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
9 changed files with 57 additions and 6 deletions

View file

@ -6143,6 +6143,10 @@ fn run_low_level<'a, 'ctx, 'env>(
unreachable!("these are higher order, and are handled elsewhere")
}
BoxExpr | UnboxExpr => {
unreachable!("The {:?} operation is turned into mono Expr", op)
}
PtrCast | RefCountInc | RefCountDec => {
unreachable!("Not used in LLVM backend: {:?}", op);
}