This commit is contained in:
Richard Feldman 2022-12-08 06:37:00 -05:00
parent 5958f50728
commit 8307a194e1
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -169,7 +169,7 @@ fn unreachable_function(env: &Env, name: &str) {
// already been defined by the builtins, which rely on it.
let fn_val = match env.module.get_function(name) {
Some(f) => f,
None => panic!("extern function {name} is not defined by the bulitins"),
None => panic!("extern function {name} is not defined by the builtins"),
};
// Add a basic block for the entry point